-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.08 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.08 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
{
"name": "big-planet",
"version": "1.0.1",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "npx remix vite:dev --port 3001",
"link-deprec": "echo \"npm link @jsb188/app @jsb188/react @jsb188/graphql @jsb188/css\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "PORT=3003 npx remix-serve ./build/server/index.js",
"deploy-old": "cross-env NODE_ENV=production PORT=3001 npx remix-serve ./build/server/index.js",
"deploy": "cross-env NODE_ENV=production PORT=3001 pm2 start ./start.sh --name=\"big-planet\" && pm2 save",
"dts-gen": "echo \"dts-gen -m INSERT_PKG_NAME_HERE\"",
"typecheck": "tsc"
},
"dependencies": {
"@google-cloud/storage": "^7.12.0",
"@remix-run/node": "^2.16.1",
"@remix-run/react": "^2.16.1",
"@remix-run/serve": "^2.16.1",
"@stripe/react-stripe-js": "^2.8.1",
"@stripe/stripe-js": "^4.8.0",
"cross-env": "^7.0.3",
"extract-colors": "^4.1.1",
"hark": "^1.2.3",
"jotai": "^2.12.1",
"isbot": "^4.1.0",
"peerjs": "^1.5.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"socket.io-client": "^4.8.1",
"@jsb188/app": "^1.1.3",
"@jsb188/css": "^1.1.3",
"@jsb188/graphql": "^1.1.3",
"@jsb188/react": "^1.1.3",
"@jsb188/react-web": "^1.1.3"
},
"devDependencies": {
"@remix-run/dev": "^2.16.0",
"@stylistic/eslint-plugin-ts": "^3.1.0",
"@types/node": "^22.13.10",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"postcss": "^8.5.5",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}