-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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": "express-boilerplate",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"description": "A modern Express boilerplate for building RESTful APIs.",
"scripts": {
"start": "nodemon --inspect -r ts-node/register src/index.ts",
"build": "tsc",
"test": "jest --verbose --runInBand",
"lint": "tslint -c tslint.json -p tsconfig.json src/**/*.ts"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.1",
"@types/cors": "^2.8.3",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/helmet": "^0.0.37",
"@types/jest": "^22.2.2",
"@types/jsonwebtoken": "^7.2.6",
"@types/mongoose": "^5.0.10",
"@types/ms": "^0.7.30",
"@types/supertest": "^2.0.4",
"@types/winston": "^2.3.9",
"jest": "^22.4.3",
"nodemon": "^1.17.4",
"supertest": "^3.0.0",
"ts-jest": "^22.4.2",
"ts-node": "^6.0.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"helmet": "^3.8.2",
"jsonwebtoken": "^8.1.0",
"mongoose": "^5.0.16",
"ms": "^2.0.0",
"winston": "^2.4.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"tests"
]
}
}