-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "sophon",
"version": "0.1.0",
"private": true,
"description": "The Dark Forest Toolbox",
"main": "index.mjs",
"author": "Blaine Bublitz <[email protected]>",
"license": "MIT",
"workspaces": [
"client"
],
"engines": {
"node": ">=14.13.0"
},
"dependencies": {
"big-integer": "^1.6.48",
"dotenv": "^8.2.0",
"inquirer": "^7.3.3",
"level": "^6.0.1",
"level-concat-iterator": "^2.0.0",
"lodash": "^4.17.15",
"primus": "^7.3.5",
"primus-emit": "^1.0.0",
"update-dotenv": "^1.1.1",
"vite": "1.0.0-rc.4",
"vite-plugin-react": "^3.0.2",
"ws": "^7.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"bs-platform": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"neon-cli": "^0.4.2",
"st": "^2.0.0",
"typescript": "^3.7.2"
},
"resolutions": {
"vite": "npm:@phated/[email protected]"
},
"scripts": {
"start": "node .",
"prepare": "yarn build",
"build": "yarn re:build && yarn rust:build",
"re:build": "bsb -make-world",
"re:watch": "bsb -make-world -w",
"re:clean": "bsb -clean-world",
"rust:build": "neon build --release",
"static:build": "vite build",
"static:serve": "st -p 8083 -d dist -i index.html -nc"
}
}