forked from itmo2019/task6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "task6",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/classnames": "2.2.8",
"@types/jest": "24.0.13",
"@types/lodash": "4.14.134",
"@types/node": "12.0.4",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@types/react-transition-group": "4.2.2",
"@types/react-window": "1.8.0",
"babel-plugin-transform-react-jsx-img-import": "0.1.4",
"classnames": "2.2.6",
"lodash": "4.17.15",
"react": "16.8.5",
"react-dom": "16.8.5",
"react-image-lazy-load": "1.3.0",
"react-redux": "7.1.1",
"react-switch": "5.0.1",
"react-transition-group": "4.3.0",
"react-window": "1.8.2",
"redux": "4.0.4"
},
"devDependencies": {
"@hellroot/eslint-config": "1.7.1",
"@hellroot/stylelint-config": "1.0.1",
"@types/react-redux": "7.1.2",
"eslint": "5.12.0",
"file-loader": "4.2.0",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"react-scripts": "2.1.8",
"redux-devtools": "3.5.0",
"stylelint": "9.10.1",
"typescript": "3.3.4000",
"url-loader": "1.1.2"
},
"scripts": {
"dev": "react-scripts start",
"test": "react-scripts test",
"build": "react-scripts build",
"lint": "npm-run-all lint:*",
"lint:js": "eslint \"**/*.{ts,tsx}\"",
"lint:css": "stylelint \"**/*.css\"",
"lint-fix": "npm-run-all lint-fix:*",
"lint-fix:js": "eslint --fix \"**/*.{ts,tsx}\"",
"lint-fix:css": "stylelint --fix \"**/*.css\"",
"format": "prettier --write '**/*.{ts,tsx,css,json,md}'",
"now-build": "npm run build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}