forked from zenith391/bwapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1009 Bytes
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
{
"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 --exit"
},
"author": "zenith391",
"license": "MIT",
"dependencies": {
"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",
"uuid": "^3.4.0"
},
"devDependencies": {
"@tsconfig/node17": "^1.0.1",
"@types/node": "^17.0.1",
"@types/uuid": "^8.3.1",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nodemailer": "^6.8.0",
"supertest": "^6.1.3",
"typescript": "^4.9.4"
}
}