-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 986 Bytes
/
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
49
50
51
{
"name": "ngjs-starter",
"private": true,
"version": "0.0.2",
"description": "",
"engines": {
"npm": ">=3"
},
"scripts": {
"start": "ngjs-scripts start",
"build": "ngjs-scripts build",
"test": "ngjs-scripts test"
},
"author": "",
"license": "MIT",
"dependencies": {
"angular": "1.7.3",
"angular-mocks": "^1.7.3",
"angular-ui-router": "^1.0.20",
"bootstrap": "^4.1.3",
"normalize.css": "8.0.0"
},
"devDependencies": {
"@ddeis/eslint-config-ngjs-app": "^0.0.2",
"@ddeis/ngjs-scripts": "^0.0.2",
"eslint": "^5.4.0",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.2"
},
"keywords": [],
"eslintConfig": {
"extends": [
"@ddeis/eslint-config-ngjs-app"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
}