-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ng-hotrod",
"version": "0.6.0",
"description": "Simple starter for AngularJS + Angular Material + Vite",
"main": "index.js",
"author": "Fyodor Loenko",
"license": "MIT",
"scripts": {
"dev": "vite serve",
"build": "vite build",
"serve": "vite preview",
"start": "npm run dev",
"prebuild": "rm -rf dist",
"lint": "./node_modules/.bin/eslint app",
"format": "prettier \"app/**/*.{ts,js,json,scss,css}\" --write"
},
"dependencies": {
"angular": "^1.8.3",
"angular-animate": "^1.8.3",
"angular-aria": "^1.8.3",
"angular-material": "^1.2.5",
"angular-messages": "^1.8.3"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-angular": "^4.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"hygen": "^6.2.11",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"vite": "^3.2.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,scss,css}": [
"prettier --write",
"git add"
]
},
"homepage": "https://ng-hotrod.netlify.app/"
}