-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "Big-Omega-Tools",
"version": "0.1.0",
"private": true,
"dependencies": {
"@popperjs/core": "^2.5.4",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@testing-library/user-event": "^12.2.0",
"bestzip": "^2.2.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "^5.0.1",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build:prod": "export INLINE_RUNTIME_CHUNK=false && react-scripts build && npm run zip-build && npm run move-files",
"zip-build": "bestzip big-omega-extension.zip build/",
"move-files": "cp leetcode-live.zip ../webapp/public",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build": "export INLINE_RUNTIME_CHUNK=false && node ./build-rewired.js && npm run clean && npm run move-index && npm run zip-build",
"clean": "cd build && mv static/js/*.js big-omega-tools.js && mv static/css/*.css big-omega-tools.css && rm -r static",
"move-index": "cp public/index.html build/index.html"
},
"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"
]
},
"devDependencies": {
"env-cmd": "^10.1.0",
"rewire": "^5.0.0",
"sass": "^1.52.0"
}
}