-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "app",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "16.11.0",
"react-dom": "16.11.0"
},
"devDependencies": {
"@types/enzyme": "3.9.3",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/jest": "24.0.20",
"@types/node": "12.11.7",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"chai": "4.2.0",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"enzyme-to-json": "3.3.5",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-ascii": "1.0.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.19.0",
"eslint-plugin-mocha": "5.2.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.6.0",
"prettier": "1.17.1",
"react-scripts": "3.2.0",
"react-test-renderer": "16.12.0",
"redux-devtools-extension": "2.13.8",
"redux-mock-store": "1.5.3",
"typescript": "3.5.3"
},
"scripts": {
"start": "react-scripts start",
"start-e2e": "REACT_APP_E2E=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test-coverage": "react-scripts test --coverage --watchAll=false",
"hermione": "./node_modules/.bin/hermione gui --save --retry=0 && rm -rf ./images && rm -rf ./hermione",
"selenium-server:install": "./node_modules/.bin/selenium-standalone install",
"selenium-server:start": "./node_modules/.bin/selenium-standalone start"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}