-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "map-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "16.7.0",
"react-beautiful-dnd": "10.0.3",
"react-dom": "16.7.0",
"react-scripts": "2.1.3",
"react-yandex-maps": "3.0.2",
"uniqid": "5.0.3"
},
"scripts": {
"lint": "node_modules/.bin/eslint . --ext .js,.jsx --fix",
"start": "npm run lint && npm run test:nowatch && react-scripts start",
"start:win": "npm run lint && npm run test:nowatch:win && react-scripts start",
"build": "npm run lint && npm run test:nowatch && react-scripts build",
"build:win": "npm run lint && npm run test:nowatch:win && react-scripts build",
"test": "react-scripts test",
"test:nowatch": "CI=true react-scripts test",
"test:nowatch:win": "set CI=true && react-scripts test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-eslint": "9.0.0",
"babel-jest": "23.6.0",
"eslint": "5.6.0",
"eslint-plugin-import": "2.15.0",
"eslint-plugin-jest": "22.2.0",
"eslint-plugin-react": "7.12.4",
"jest": "23.6.0",
"jest-dom": "3.0.1",
"react-testing-library": "5.4.4"
}
}