-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.33 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
{
"name": "sanctuary-server",
"version": "1.1.0",
"description": "A private server with administration interface for the popular online game MooMoo.io",
"main": "index.js",
"scripts": {
"start": "npm run build && node lib/server.js",
"build": "tsc -b tsconfig.json"
},
"keywords": [],
"author": "Picoseconds",
"license": "WTFPL",
"devDependencies": {
"@types/node": "^14.0.24",
"cz-conventional-changelog": "3.2.0",
"standard-version": "^8.0.2",
"typescript": "^3.9.2"
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/lowdb": "^1.0.9",
"@types/msgpack-lite": "^0.1.7",
"@types/nanotimer": "^0.3.0",
"@types/nunjucks": "^3.1.3",
"@types/vec2": "^1.6.1",
"@types/ws": "^7.2.6",
"ansi-escapes": "^4.3.1",
"array-buffer-to-hex": "^1.0.0",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^3.0.2",
"fast-sha256": "^1.3.0",
"lowdb": "^1.0.0",
"msgpack-lite": "^0.1.26",
"nanotimer": "^0.3.15",
"node-brigadier": "^0.0.12",
"nunjucks": "^3.2.2",
"vec2": "^1.6.1",
"ws": "^7.3.1"
},
"engines": {
"node": ">=10.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}