-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1008 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 1008 Bytes
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": "ccsp-prototype-ui",
"version": "1.0.0",
"description": "Prototype for CSSP",
"main": "",
"dependencies": {
"angular": "^1.8.0",
"angular-animate": "^1.8.0",
"angular-datatables": "^0.6.4",
"angular-resource": "^1.8.0",
"angular-route": "^1.8.0",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"ui-bootstrap4": "^3.0.6"
},
"devDependencies": {
"csscomb": "^4.3.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"prettier": "1.16.1",
"serve": "^11.3.2"
},
"scripts": {
"start": "npx serve"
},
"repository": {
"type": "git",
"url": "git@github.com:JanDW/ccsp-ui.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"components/**/*.{js,json,html}": [
"prettier --write",
"git add -A"
],
"employee-ui/**/*.{js,json,html}": [
"prettier --write",
"git add -A"
],
"components/**/*.css, employee-ui/**/*.css": [
"csscomb --tty-mode --",
"git add -A"
]
},
"author": "Jan De Wilde",
"license": ""
}