-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.19 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": "jest-mongodb-demo",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"start": "node -r module-alias/register dist/index",
"test": "DEBUG=fetch-mock* jest"
},
"config": {
"mongodbMemoryServer": {
"debug": "0"
}
},
"_moduleAliases": {
"~": "dist"
},
"dependencies": {
"axios": "^0.26.1",
"body-parser": "^1.20.0",
"bson": "4.6.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"method-override": "^3.0.0",
"module-alias": "^2.2.2",
"mongodb-memory-server": "8.4.2",
"mongoose": "6.2.10",
"mongoose-int32": "^0.6.0",
"node-fetch": "^3.2.3",
"tsconfig-paths": "^3.14.1",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"axios-mock-adapter": "^1.20.0",
"esm": "^3.2.25",
"fetch-mock-jest": "^1.5.1",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"author": "",
"license": "ISC"
}