-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
76 lines (76 loc) · 2.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "sc2-planner-react",
"version": "0.1.0",
"private": true,
"homepage": "./",
"scripts": {
"start": "npm run tailwind:dev && cross-env BROWSER=none HTTPS=true NODE_OPTIONS=--openssl-legacy-provider react-scripts start",
"build": "npm run tailwind:prod && react-scripts build",
"buildNode17": "npm run tailwind:prod && cross-env NODE_OPTIONS=--openssl-legacy-provider react-scripts build",
"tailwind:dev": "cross-env DEVELOPMENT=true tailwind build -i src/tailwind.css -o src/index.css",
"tailwind:prod": "tailwind build -i src/tailwind.css -c tailwind.config.js -o src/index.css",
"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",
"format": "npx prettier --write \"src/**/*.{json,js,ts,tsx}\"",
"eslint": "npx eslint src/**/*.{ts,tsx} --max-warnings 0",
"eslintfix": "npx eslint src/**/*.{ts,tsx} --max-warnings 0 --fix",
"eject": "react-scripts eject"
},
"dependencies": {
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.2",
"@types/pako": "^1.0.2",
"@types/react": "^17.0.26",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"@types/react-tooltip": "^3.11.0",
"autoprefixer": "^10.3.6",
"cross-env": "^7.0.3",
"jsonpack": "^1.1.5",
"lodash": "^4.17.21",
"lzbase62": "^2.0.0",
"pako": "^1.0.11",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"react-tooltip": "^4.2.21",
"react-transition-group": "^4.4.2",
"tailwindcss": "^2.2.16",
"typescript": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.32.2",
"@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",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.1",
"npm-check-updates": "^11.8.5",
"prettier": "2.4.1",
"serve": "^14.2.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}