-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.86 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
{
"name": "chinchon",
"version": "0.1.0",
"private": true,
"dependencies": {
"boardgame.io": "^0.49.11",
"koa-static": "^5.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "5.0.1",
"sortablejs": "^1.15.0",
"web-vitals": "^2.1.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/koa-compress": "^4.0.3",
"@types/koa-static": "^4.0.2",
"@types/node": "^16.11.31",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/sortablejs": "^1.10.7",
"autoprefixer": "^10.4.5",
"jest": "^28.0.3",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4"
},
"scripts": {
"build": "react-scripts build && npm run build-server && npm run gzip-bundle && npm run brotli-bundle",
"start": "node server-build/server.js",
"dev": "PORT=8081 REACT_APP_PORT=8082 react-scripts start",
"local": "PORT=8082 REACT_APP_PORT=8082 npm run build && PORT=8082 REACT_APP_PORT=8082 npm start",
"build-server": "tsc src/server.ts --outDir server-build --esModuleInterop --module commonjs --skipLibCheck true --downlevelIteration",
"gzip-bundle": "npx gzipper compress --gzip build/static/js/main.*.js",
"brotli-bundle": "npx gzipper compress --brotli build/static/js/main.*.js",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"engines": {
"node": "16.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"gzipper": "^7.1.0"
}
}