-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "leetcode-cheat",
"version": "0.1.0",
"private": true,
"engines": {
"node": "14.x"
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@excalidraw/excalidraw": "^0.10.0",
"@matejmazur/react-katex": "^3.1.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"antd": "^4.9.3",
"katex": "^0.16.9",
"react": "^17.0.1",
"react-debounce-render": "^7.0.0",
"react-dom": "^17.0.1",
"react-markdown": "^5.0.1",
"react-scripts": "3.4.1",
"react-syntax-highlighter": "^15.4.3",
"remark-math": "^4.0.0",
"rome": "^10.0.4-beta"
},
"scripts": {
"release": "cd build && zip -r leetcode-cheat.zip . && mv leetcode-cheat.zip ../ && git commit -am 'feat: release' && git push",
"lint": "eslint src",
"start": "react-app-rewired start",
"build-web": "PUBLIC_URL=/leetcode-cheat react-app-rewired build",
"build": "REACT_APP_BUILD_TARGET=extension react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"crawl": "node scripts/curlLeetcode.js && node scripts/generateLeetcode.js",
"clean": "rm -f src/db/root.db.js && rm -rf spider/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"axios": ">=0.21.1",
"cheerio": "^1.0.0-rc.3",
"iconv-lite": "^0.5.1",
"log4js": "^6.3.0",
"mkdirp": "^1.0.4",
"react-app-rewired": "^2.1.7"
}
}