-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.51 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
77
78
79
80
81
82
83
{
"name": "taruto",
"version": "0.1.0",
"private": true,
"repository": "https://github.com/zhixuan2333/taruto",
"author": "https://github.com/zhixuan2333",
"license": "MIT",
"dependencies": {
"@nextui-org/react": "^1.0.0-beta.12",
"@react-three/drei": "^9.51.3",
"@react-three/fiber": "^8.10.0",
"@tabler/icons-react": "^2.1.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/three": "^0.148.0",
"nodemon": "^2.0.20",
"pino": "^8.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-spring": "^9.6.1",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4",
"three": "^0.148.0",
"typescript": "*",
"web-vitals": "^3.1.0"
},
"scripts": {
"start": "react-scripts start",
"start:heavy": "react-scripts start --max_old_space_size=8128",
"serve": "serve -s build",
"build": "react-scripts build",
"server": "npx ts-node --project tsconfig.server.json server/index.ts | pino-pretty",
"server:watch": "LOG_LEVEL=debug nodemon | pino-pretty",
"server:debug": "LOG_LEVEL=debug TS_NODE_PROJECT=tsconfig.server.json node --inspect --require ts-node/register server/index.ts | pino-pretty",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css}'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.11",
"pino-pretty": "^9.2.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 100
}
}