-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.84 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
51
52
53
54
55
56
57
{
"name": "leetcode-283-move-zeroes",
"version": "0.1.0",
"private": true,
"homepage": "https://fuck-algorithm.github.io/leetcode-283-move-zeroes/",
"dependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^13.5.0",
"@types/d3": "^7.4.3",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.126",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"d3": "^7.9.0",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.4.1",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"gh-pages": "^6.1.1"
},
"scripts": {
"start": "PORT=$((30000 + RANDOM % 35535)) react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "GIT_COMMITTER_NAME='cc11001100' GIT_COMMITTER_EMAIL='example@example.com' GIT_AUTHOR_NAME='cc11001100' GIT_AUTHOR_EMAIL='example@example.com' NODE_DEBUG=gh-pages gh-pages -d build -b gh-pages",
"deploy:local": "git config --local commit.gpgsign false && GIT_COMMITTER_NAME='cc11001100' GIT_COMMITTER_EMAIL='example@example.com' GIT_AUTHOR_NAME='cc11001100' GIT_AUTHOR_EMAIL='example@example.com' NODE_DEBUG=gh-pages gh-pages -d build -b gh-pages --no-push",
"deploy:nopgp": "./nopgp.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"
]
}
}