-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 925 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
{
"name": "contest-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"form-urlencoded": "^2.0.4",
"inferno": "^3.10.1",
"inferno-component": "^3.10.1",
"inferno-router": "^3.10.1",
"inferno-scripts": "5.0.0",
"linkstate": "^1.1.0",
"milligram": "^1.3.0"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"eslint": "^4.7.1",
"eslint-config-prettier": "^2.9.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "1.9.2"
},
"scripts": {
"start": "inferno-scripts start",
"build": "inferno-scripts build",
"test": "inferno-scripts test --env=jsdom",
"eject": "inferno-scripts eject",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": ["prettier --write", "eslint src/", "git add"],
"*.{json,css,md}": ["prettier --write", "git add"]
}
}