-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.84 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
{
"name": "survival-parchment",
"version": "0.1.0",
"description": "survival-parchment",
"main": "index.js",
"scripts": {
"build:esbuild": "cross-env NODE_ENV=production node build/build-bundle.js",
"build:tailwind": "npx tailwindcss -i ./web/style.css -o ./dist/web/style.css --minify",
"build": "npm run clearbuild && npm run typecheck && npm-run-all --parallel build:*",
"clearbuild": "rimraf ./dist",
"typecheck": "tsc --noEmit -p client/tsconfig.json && tsc --noEmit -p server/tsconfig.json",
"start:esbuild": "cross-env IS_WATCH_MODE=1 NODE_ENV=development node build/build-bundle.js",
"start:tailwind": "npx tailwindcss -i ./web/style.css -o ./dist/web/style.css --watch",
"start": "npm run clearbuild && npm-run-all --parallel start:*"
},
"author": "Tadjh Brooks",
"license": "MIT",
"devDependencies": {
"@citizenfx/client": "^2.0.8052-1",
"@citizenfx/server": "^2.0.8052-1",
"@dotenv-run/esbuild": "^1.3.5",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/webfontloader": "^1.6.38",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"esbuild": "0.19.11",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-icons": "^5.1.0",
"tailwind-merge": "^2.3.0",
"webfontloader": "^1.6.28"
},
"engines": {
"node": ">=16.9.1",
"yarn": ">=1.22.5"
},
"resolutions": {
"path-scurry": "1.6.3",
"lru-cache": "7.18.0"
},
"packageManager": "yarn@1.22.5"
}