-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 822 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 822 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
{
"name": "mancjs-golf",
"version": "0.0.1",
"description": "A code golf game server for JavaScript",
"scripts": {
"start": "CG_ADMIN=admin ts-node src",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Martin Rue",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"express-basic-auth": "^1.1.5",
"jsmin": "~1.0.1",
"lodash": "^4.17.10",
"multiparty": "^4.1.3",
"mustachex": "^0.0.3",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.11.1",
"@types/lodash": "^4.14.108",
"@types/multiparty": "^0.0.31",
"@types/node": "^16.11.6",
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}