-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "agentium",
"version": "0.1.1",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"detect-browser": "^5.2.0",
"fontsource-roboto": "^3.0.3",
"lodash": "^4.17.20",
"mobx": "^6.0.4",
"mobx-react": "^7.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"uuid": "^8.3.1",
"webextension-polyfill-ts": "^0.22.0"
},
"devDependencies": {
"@types/detect-browser": "^4.0.0",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.6",
"@types/uuid": "^8.3.0",
"manifoldjs": "^0.7.6",
"onchange": "^7.1.0",
"react-scripts": "^4.0.1",
"typescript": "^4.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && misc/post-build.sh",
"test": "react-scripts test",
"eject": "react-scripts eject",
"watch": "misc/watch.sh",
"build-edge": "npm run build && packaging/edge/build-edge.sh",
"build-firefox": "npm run build && packaging/firefox/build-firefox.sh",
"build-chrome": "packaging/chrome/build-chrome.sh"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}