This repository has been archived by the owner on Sep 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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": "nodejs-mongo-demo",
"version": "1.0.0",
"description": "NodeJS MongoDB case",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start:dev": "ts-node-dev --respawn --transpileOnly src/index.ts",
"build": "tsc --build tsconfig.json",
"test": "jest",
"integration-tests": "jest --testPathPattern=tests/integration-tests",
"unit-tests": "jest --testPathPattern=tests/unit-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peacecwz/nodejs-mongo.git"
},
"keywords": [
"nodejs",
"mongodb"
],
"author": "Baris Ceviz - @PeaceCwz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/peacecwz/nodejs-mongo/issues"
},
"homepage": "https://github.com/peacecwz/nodejs-mongo#readme",
"dependencies": {
"class-validator": "^0.12.2",
"express": "^4.17.1",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"mongoose": "^5.9.15",
"reflect-metadata": "^0.1.13",
"swagger-express-ts": "^1.0.1",
"swagger-ui-dist": "^3.25.3"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/express": "^4.17.6",
"@types/faker": "^4.1.12",
"@types/inversify": "^2.0.33",
"@types/jest": "^25.2.3",
"@types/mongoose": "^5.7.21",
"@types/sinon": "^9.0.4",
"@types/supertest": "^2.0.9",
"chai": "^4.2.0",
"faker": "^4.1.0",
"jest": "^26.0.1",
"lodash": "^4.17.19",
"sinon": "^9.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3"
}
}