-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ofb-backend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "npm run build && concurrently --kill-others \"tsc -w -p src\" \"nodemon dist/index.js -e ts\"",
"debug": "npm run build && concurrently --kill-others \"tsc -w -p src\" \"nodemon --inspect dist/index.js -e ts\"",
"test:watch": "mocha -r ts-node/register -w ./spec/**/*.spec.ts --watch-extensions ts",
"test": "mocha -r ts-node/register -w ./spec/**/*.spec.ts",
"build": "tsc -p src",
"start": "set NODE_ENV=production && node dist/index.js",
"format": "prettier --write 'src/**/*ts'",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:test": "tslint -c tslint.json 'spec/**/*.ts'",
"format:test": "prettier --write 'spec/**/*ts'"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development"
}
},
"dependencies": {
"@types/cors": "^2.8.6",
"@types/morgan": "^1.7.37",
"@types/mysql": "^2.15.9",
"@types/nodemailer": "^6.4.0",
"body-parser": "^1.13.3",
"cookie-parser": "~1.3.5",
"cors": "^2.8.5",
"cross-env": "^5.1.5",
"debug": "^4.0.1",
"express": "^4.17.1",
"fresh": "^0.5.2",
"glob": "^5.0.14",
"lodash": "^4.17.15",
"mongoose": "^5.7.5",
"morgan": "^1.6.1",
"mysql": "^2.18.1",
"negotiator": "^0.6.1",
"nodemailer": "^6.4.10",
"pug": "^2.0.3",
"serve-favicon": "^2.5.0",
"shortid": "^2.2.15",
"socket.io": "^2.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.17.6",
"@types/lodash": "^4.14.68",
"@types/mocha": "^5.2.0",
"@types/mongoose": "^4.7.18",
"@types/node": "^8.0.9",
"@types/sinon": "^4.3.3",
"@types/socket.io": "^2.1.2",
"chai": "^4.1.2",
"concurrently": "^3.5.0",
"mocha": "^5.1.1",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.17.4",
"prettier": "^1.18.2",
"sinon": "^5.0.7",
"ts-node": "^6.0.3",
"tslint": "^5.18.0"
}
}