-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 KB
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
{
"name": "node-boilerplate-api",
"author": "Hugo Deiró",
"version": "0.0.0",
"homepage": "https://gitlab.com/base/node-boilerplate-api#readme",
"license": "ISC",
"scripts": {
"start": "npm run watch",
"start:docker": "docker-compose up",
"watch": "ts-node-dev -r esm src/app.ts",
"build": "rimraf ./dist && tsc",
"test": "PORT=9938 TESTING=true jest --config ./jest.config.js",
"test:watch": "PORT=9938 TESTING=true npm run test -- --watch",
"test:coverage": "PORT=9938 TESTING=true jest --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/base/node-boilerplate-api.git"
},
"bugs": {
"url": "https://gitlab.com/base/node-boilerplate-api/issues"
},
"dependencies": {
"body-parser": "1.20.1",
"cors": "2.8.5",
"dotenv": "16.0.3",
"esm": "3.2.25",
"express": "4.18.2",
"helmet": "6.0.0",
"log4js": "6.7.0"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.14",
"@types/helmet": "4.0.0",
"@types/jest": "29.2.0",
"@types/node": "18.11.5",
"@types/supertest": "2.0.12",
"jest": "29.2.2",
"really-need": "1.9.2",
"rimraf": "3.0.2",
"supertest": "6.3.1",
"ts-jest": "29.0.3",
"ts-node-dev": "2.0.0",
"tslint": "6.1.3",
"typescript": "4.8.4"
}
}