-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "five-minutes-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"jest": "jest",
"tsc": "tsc",
"dev": "nodemon",
"build": "tsc",
"start": "node ./dist",
"prod": "npm run build && npm run start"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.0.8",
"@types/body-parser": "^1.17.0",
"@types/multer": "^1.3.7",
"body-parser": "^1.18.3",
"class-validator": "^0.9.1",
"express": "^4.16.4",
"jsdom": "^15.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.13",
"multer": "^1.4.1",
"mysql": "^2.16.0",
"pluralize": "^7.0.0",
"qs": "^6.7.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.7.7",
"showdown": "^1.9.0",
"typeorm": "^0.2.16"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/jsdom": "^12.2.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.0",
"@types/pluralize": "0.0.29",
"@types/qs": "^6.5.3",
"@types/showdown": "^1.9.3",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.2"
},
"jest": {
"preset": "ts-jest",
"testRegex": "tests/.+\\.spec\\.ts$",
"verbose": true
}
}