-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "testfront-devtools",
"version": "1.0.1",
"description": "TestFront.io DevTools",
"author": "testfront.io",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"diff-match-patch": "^1.0.5",
"octicons": "^8.5.0",
"polished": "^3.7.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"styled-components": "^4.4.0"
},
"devDependencies": {
"archiver": "^3.1.1",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-plugin-react-app": "^6.2.2",
"fs-extra": "^8.1.0",
"typescript": "^3.9.9"
},
"scripts": {
"start": "react-scripts start",
"build": "cross-env INLINE_RUNTIME_CHUNK=false PUBLIC_URL=. react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint '**/*.js'",
"zip": "npm run build && node ./zip.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3030"
}