-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"build-ts": "tsc --rootDir src",
"postinstall": "npm run build-ts",
"start": "npm run serve",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"start:old": "node src/app.js",
"start:dev": "nodemon",
"test": "mocha -r ts-node/register ./src/test/accidents/test1.test.ts"
},
"author": "dror",
"license": "ISC",
"dependencies": {
"@types/morgan": "^1.9.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-request-id": "^1.4.1",
"helmet": "^4.4.1",
"mongoose": "^5.12.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-cache": "^5.1.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/express": "^4.17.1",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"mockgoose": "^8.0.4",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
}
}