-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
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
{
"name": "locker-allocation-sever",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon server/app.js --exec babel-node",
"start": "node ./dist/app.js",
"build": "rm -rf dist && babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eshaibu/locker-allocation-sever.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eshaibu/locker-allocation-sever/issues"
},
"homepage": "https://github.com/eshaibu/locker-allocation-sever#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"grunt": "^1.0.2",
"grunt-aws-lambda": "^0.13.0",
"grunt-es6-import-validate": "0.0.7"
},
"dependencies": {
"aws-sdk": "^2.233.1",
"convict": "^4.2.0",
"validatorjs": "^3.14.2"
}
}