-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "bwapi",
"version": "1.0.0",
"description": "Blocksworld API server host software.",
"repository": "https://github.com/zenith391/bwapi",
"type": "module",
"main": "main.js",
"scripts": {
"build": "tsc",
"start": "tsc && node --trace-warnings --unhandled-rejections=strict main.js",
"test": "tsc && mocha --no-experimental-require-module --exit",
"format": "npx prettier . --write"
},
"author": "zenith391",
"license": "MIT",
"dependencies": {
"@types/sqlite3": "^3.1.11",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.4.0",
"compression": "^1.7.4",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"ioredis": "^4.26.0",
"multiparty": "^4.2.2",
"reflect-metadata": "^0.1.13",
"serverline": "^1.5.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"uuid": "^13.0.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.6",
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/express": "^5.0.3",
"@types/express-session": "^1.18.2",
"@types/ioredis": "^4.28.10",
"@types/multiparty": "^4.2.1",
"@types/node": "^20.19.23",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nodemailer": "^6.8.0",
"prettier": "3.6.2",
"supertest": "^6.1.3",
"typescript": "^5.9.3"
}
}