-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "hotel-booking-ddd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "NODE_ENV=prod tsc && node ./build/src/booking/server/index.js",
"tsc": "tsc",
"dev": "NODE_ENV=dev ts-node-dev --respawn --transpileOnly ./src/booking/server/index.ts",
"prod": "NODE_ENV=prod tsc && node ./build/src/booking/server/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/compression": "0.0.36",
"@types/express": "^4.17.0",
"@types/graphql": "^14.2.2",
"@types/graphql-depth-limit": "^1.1.0",
"@types/jasmine": "^3.4.0",
"@types/jest": "^24.0.15",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"barrelsby": "^2.1.1",
"eslint": "^6.0.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.2"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^6.1.1",
"@types/uuid": "^3.4.5",
"apollo-server": "^2.7.0",
"awilix": "^4.2.2",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"graphql": "^14.4.2",
"inversify": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13"
}
}