-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "axionspire-api",
"version": "1.0.0",
"description": "The API for the AxionSpire Minecraft server.",
"main": "dist/app.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "node .",
"dev": "nodemon -x 'tsx' -w src -w package.json -w tsconfig.json -w .env src/app.ts",
"test": "cross-env NODE_ENV=test API_KEY=testing NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules' jest --testTimeout=5000",
"lint": "eslint"
},
"keywords": [
"minecraft",
"axionspire",
"api",
"express"
],
"author": "Aelithron",
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.0",
"escape-html": "^1.0.3",
"eslint-plugin-jest": "^28.9.0",
"express": "^4.21.2",
"mysql2": "^3.11.5",
"supertest": "^7.0.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@jest/globals": "^29.7.0",
"@types/escape-html": "^1.0.4",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/supertest": "^6.0.2",
"drizzle-kit": "^0.30.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}