-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "todo",
"version": "0.1.0",
"private": true,
"homepage": "https://andreevsm.github.io/react-todo-app/",
"dependencies": {
"gh-pages": "^2.1.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^7.1.1",
"react-scripts": "3.2.0",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"uid": "0.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint src",
"stylelint": "stylelint src/**/*.css",
"hooks:commit": "lint-staged",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"test": "jest",
"test:watch": "jest --watchAll"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-jest": "^24.9.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"ghooks": "^2.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"react-test-renderer": "^16.12.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0"
},
"lint-staged": {
"*.js": "npm run lint",
"*.@(scss|css)": "npm run stylelint"
},
"config": {
"ghooks": {
"pre-commit": "npm run hooks:commit"
}
}
}