-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "tickets",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --poll src/index.ts",
"test": "jest --watchAll --no-cache",
"test:prod": "jest --runInBand --detectOpenHandles --forceExit --no-cache"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/test/setup.ts"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@getickets/common": "^1.0.25",
"@types/cookie-session": "^2.0.39",
"@types/express": "^4.17.3",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.8",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.7",
"mongoose-update-if-current": "^1.4.0",
"node-nats-streaming": "^0.2.6",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/supertest": "^2.0.8",
"jest": "^25.2.7",
"mongodb-memory-server": "^6.5.1",
"supertest": "^4.0.2",
"ts-jest": "^25.3.1"
}
}