-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "tintin-application",
"version": "0.1.0",
"private": true,
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"react-scripts": "0.9.5",
"stylelint-config-standard": "^16.0.0"
},
"dependencies": {
"history": "^4.6.1",
"husky": "^0.13.3",
"isomorphic-fetch": "^2.2.1",
"react": "^15.5.4",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0"
},
"config": {
"port": "3031"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"server": "json-server --watch -p $npm_package_config_port db.json",
"pretest": "npm run lint",
"test": "react-scripts test --env=jsdom --silent --watch",
"cover": "npm test -- --coverage",
"postcover": "open coverage/lcov-report/index.html",
"lint": "npm-run-all lint:**",
"lint:js": "eslint --fix ./src",
"lint:css": "stylelint './src/*.css'",
"lint:css:fix": "stylefmt -r ./src",
"precommit": "npm run lint:js"
}
}