-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "sc2-planner-react",
"version": "0.1.0",
"private": true,
"homepage": "./",
"scripts": {
"start": "cross-env BROWSER=none HTTPS=true NODE_OPTIONS=--openssl-legacy-provider react-scripts start",
"build": "react-scripts build",
"serve": "serve -s build",
"buildNode17": "cross-env NODE_OPTIONS=--openssl-legacy-provider react-scripts build",
"test": "react-scripts test --env=jsdom",
"testAll": "react-scripts test --env=jsdom --watchAll=false",
"teste2e": "playwright test",
"update": "npx npm-check-updates -u && npm run prune",
"prune": "rm package-lock.json -f && rm node_modules -rf && npm i",
"lint": "biome check . --error-on-warnings",
"lint:fix": "biome check . --write --error-on-warnings",
"format": "biome format .",
"eject": "react-scripts eject",
"typecheck": "cross-env NODE_OPTIONS=--openssl-legacy-provider npx tsc --noEmit"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.2",
"@types/pako": "^1.0.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.3.0",
"@types/react-tooltip": "^3.11.0",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"jsonpack": "^1.1.5",
"lodash": "^4.17.21",
"lzbase62": "^2.0.0",
"pako": "^1.0.11",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^5.3.0",
"react-scripts": "^5.0.1",
"react-tooltip": "^4.2.21",
"react-transition-group": "^4.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.2",
"npm-check-updates": "^11.8.5",
"playwright": "^1.59.1",
"prettier": "2.4.1",
"serve": "^14.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}