-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "tv-list-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon --exec babel-node server.js",
"test": "jest --forceExit --detectOpenHandles --watchAll --maxWorkers=1"
},
"dependencies": {
"@babel/runtime": "^7.16.5",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"dump-die": "^1.0.0",
"express": "^4.17.2",
"http-errors": "~2.0.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.3",
"morgan": "~1.10.0",
"node-fetch": "^3.1.0",
"serverless-http": "^2.7.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/node": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-loader": "^8.2.3",
"babel-plugin-source-map-support": "^2.1.3",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"serverless-dotenv-plugin": "^3.10.0",
"serverless-plugin-include-dependencies": "^5.0.0",
"serverless-webpack": "^5.6.0",
"supertest": "^6.1.6",
"webpack": "^5.65.0",
"webpack-node-externals": "^3.0.0",
"yargs": "^17.3.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"setupFiles": [
"<rootDir>/setupJest.js"
]
}
}