-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
59
60
61
62
63
64
65
66
67
{
"name": "nodejs-api-starter",
"description": "",
"version": "0.0.0",
"private": true,
"author": "Jesse van der Pluijm",
"license": "Apache-2.0",
"repository": "https://github.com/jessevdp/nodejs-api-starter.git",
"engines": {
"node": "^13.1.0",
"yarn": "^1.21.1"
},
"scripts": {
"start": "node build/index.js",
"build": "yarn run clean && tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:unit": "jest src/",
"test:feature": "jest tests/",
"dev": "cross-env NODE_ENV=development nodemon",
"seed": "ts-node seeds/",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn run lint --fix",
"clean": "rimraf ./build"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validation": "^3.0.2",
"http-status-codes": "^1.4.0",
"mongoose": "^5.8.13",
"morgan": "^1.9.1",
"redoc-express": "^1.0.0",
"swagger-jsdoc": "^3.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"@types/express": "^4.17.2",
"@types/faker": "^4.1.10",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.1.3",
"@types/mongoose": "^5.7.1",
"@types/morgan": "^1.9.0",
"@types/node": "^13.7.1",
"@types/supertest": "^2.0.8",
"@types/swagger-jsdoc": "^3.0.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"jest": "^25.1.0",
"mockingoose": "^2.13.2",
"mongo-seeding": "^3.4.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}