-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.23 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
74
75
76
77
78
79
{
"name": "mern-backend-starter-kit",
"version": "0.0.1",
"description": "MERN stack backend starter kit",
"main": "src/index.js",
"scripts": {
"deploy": "npm run update-source && npm run install && npm run compile-ts && npm run restart",
"update-source": "git fetch --all && git reset --hard origin/master",
"restart": "pm2 reload all",
"compile-ts": "./node_modules/.bin/tsc",
"start": "node dist/index.js",
"test": "mocha --opts \"./test/mocha.opts\"",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yello.bold, cyan.bold\" \"npm run watch-ts\" \"npm run watch-node\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/stressGC/MERN-Backend.git"
},
"keywords": [
"mern",
"mongo",
"mongodb",
"node",
"nodejs",
"express",
"expressjs",
"api",
"starter",
"starter-kit",
"linting",
"eslint"
],
"author": "Georges Cosson",
"license": "ISC",
"bugs": {
"url": "https://github.com/stressGC/MERN-Backend/issues"
},
"homepage": "https://github.com/stressGC/MERN-Backend#readme",
"dependencies": {
"@hapi/boom": "^7.4.2",
"@types/chai": "^4.1.7",
"@types/hapi__boom": "^7.4.0",
"@types/helmet": "0.0.43",
"@types/mocha": "^5.2.6",
"@types/morgan": "^1.7.35",
"@types/supertest": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"concurrently": "^3.5.1",
"dotenv": "^7.0.0",
"express-validator": "^5.3.1",
"helmet": "^3.16.0",
"http-status-codes": "^1.3.2",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"npm": "^6.13.4",
"path": "^0.12.7",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mongodb": "^3.1.22",
"@types/mongoose": "^5.3.24",
"@types/winston": "^2.4.4",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"express": "^4.16.4",
"mocha": "^6.1.4",
"supertest": "^4.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.1",
"typescript-tslint-plugin": "^0.3.1"
}
}