-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.8 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
{
"name": "test-crud-node-less",
"version": "1.0.0",
"description": "A simple test for HTTPs express handler for make a good pattern for develop in serverless environment with BDD and TDD",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js",
"test": "DEBUG=server:debug NODE_ENV=test serverless-bundle test",
"cover": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bardarz/crud-node-serverless.git"
},
"author": "DeepZima",
"license": "ISC",
"bugs": {
"url": "https://github.com/bardarz/crud-node-serverless/issues"
},
"homepage": "https://github.com/bardarz/crud-node-serverless#readme",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/runtime": "^7.6.3",
"@hapi/joi": "^16.1.7",
"aws-sdk": "^2.549.0",
"aws-serverless-express": "^3.3.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dynamoose": "^1.11.1",
"express": "^4.17.1",
"express-joi-validation": "^4.0.1",
"http-status-codes": "^1.4.0",
"lodash": "^4.17.21",
"source-map-support": "^0.5.13"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-loader": "^8.0.6",
"babel-plugin-source-map-support": "^2.1.1",
"babel-watch": "^7.0.0",
"debug": "^4.1.1",
"jest": "^25.1.0",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"serverless-bundle": "^1.2.5",
"serverless-offline": "^5.12.0",
"serverless-webpack": "^5.3.1",
"superset": "^1.0.1",
"supertest": "^4.0.2",
"webpack": "^4.41.2",
"webpack-node-externals": "^1.7.2"
}
}