-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
69 lines (69 loc) · 2.36 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
{
"name": "growserver",
"version": "2.4.0",
"description": "a growtopia private server",
"main": "dist/app.js",
"type": "module",
"scripts": {
"build": "npm run lint && swc ./src -d dist",
"start": "node -r dotenv/config dist/app.js",
"seed": "node -r dotenv/config scripts/seeds.js",
"generate": "drizzle-kit push --config=drizzle.config.ts",
"studio": "drizzle-kit studio",
"lint": "eslint lint ./src",
"iteminfo:fetch": "node wiki-scraper/build.js",
"dev": "rimraf dist && eslint ./src && tsc && node -r dotenv/config dist/app.js",
"dev:server": "rimraf dist && eslint ./src && tsc && node -r dotenv/config dist/app.js",
"dev:nolint": "rimraf dist && tsc && node -r dotenv/config dist/app.js",
"mkcert:setup": "mkcert -install && cd assets/ssl && mkcert *.growserver.app",
"install": "(node scripts/setup.js) && tsc && npm run generate && npm run seed && npm run mkcert:setup && npm run finish",
"update": "node scripts/update.js",
"finish": "echo \u001b[46mSetup Completed!\u001b[0m && echo \u001b[46mCheck out GrowServer github: https://github.com/JadlionHD/GrowServer\u001b[0m"
},
"author": "JadlionHD <jadlion.dev@gmail.com>",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/better-sqlite3": "^7.6.11",
"@types/chance": "^1.1.6",
"@types/cookie-parser": "^1.4.7",
"@types/crypto-js": "^4.2.2",
"@types/decompress": "^4.2.7",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.14.9",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"drizzle-kit": "^0.22.8",
"rimraf": "^5.0.7",
"typescript": "^4.9.5",
"typescript-eslint": "^7.14.1",
"zod": "^3.23.8"
},
"dependencies": {
"axios": "^1.7.2",
"better-sqlite3": "^11.1.1",
"chalk": "5.3.0",
"chance": "^1.1.11",
"cheerio": "^1.0.0-rc.12",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.2.0",
"decompress": "^4.2.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"drizzle-zod": "^0.5.1",
"eris": "^0.17.2",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"fast-xml-parser": "^4.4.0",
"globals": "^15.9.0",
"growtopia.js": "^1.6.0",
"mwparser": "^1.3.3",
"nanoid": "^5.0.7",
"ws": "^8.17.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
}
}