-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.82 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.82 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
50
51
52
53
54
55
{
"name": "boardgame-server",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src",
"serve": "node dist/app.js",
"watch-node": "nodemon dist/app.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/app.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@awaitjs/express": "^0.4.0",
"@hapi/joi": "^15.1.0",
"@types/bluebird": "^3.5.27",
"@types/express": "^4.17.0",
"@types/joi": "^14.3.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.165",
"@types/mongoose": "^5.5.8",
"@types/nodemailer": "^6.2.0",
"@types/passport": "^1.0.0",
"bcrypt": "^5.0.0",
"bluebird": "^3.5.5",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"ts-node-dev": "^1.0.0-pre.40",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.1",
"typedoc": "^0.19.2"
}
}