forked from Tom910/course-react-fintech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 814 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
{
"name": "cource-react-finteh",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.17"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:cli": "cross-env CI=true npm run test",
"lint:js": "eslint './src/**/*.js' './src/**/*.jsx'",
"cli": "npm run test:cli && npm run lint:js",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"prepush": "npm run test:cli"
},
"lint-staged": {
"*.@(js|jsx)": "eslint --quiet"
},
"devDependencies": {
"cross-env": "^5.1.1",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"husky": "^0.14.3",
"lint-staged": "^4.3.0"
}
}