forked from Coding-Coach/coding-coach
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 KB
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
{
"name": "coding-coach",
"version": "0.1.0",
"private": true,
"homepage": "http://coding-coach.github.io/",
"dependencies": {
"proxyquire": "^2.1.0",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-scripts": "1.1.5",
"rewire": "^4.0.1"
},
"scripts": {
"start": "node scripts/custom-config start",
"build": "node scripts/custom-config build",
"deploy": "gh-pages -d build",
"test": "node scripts/custom-config test --env=jsdom",
"eject": "react-scripts eject",
"sass": "sass --watch src/styles/scss:src/styles/css",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"ajv": "^6.5.3",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"node-sass": "^4.9.3",
"prettier": "^1.14.2",
"sass": "^1.13.2",
"sass-loader": "^7.1.0"
}
}