-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "base-api",
"version": "0.1.0",
"description": "Base API",
"main": "index.js",
"repository": "git@github.com:kennethwinky/base-api.git",
"author": "kennethwinky <kenneth.yingkit.wan@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=dev ./node_modules/.bin/gulp",
"uat": "NODE_ENV=uat ./node_modules/.bin/gulp",
"prod": "NODE_ENV=prod ./node_modules/.bin/gulp",
"clean": "./node_modules/.bin/gulp dist:clean",
"build": "./bin/build",
"deploy": "./bin/deploy",
"cleanup": "./bin/cleanup",
"test": "echo 'no tests!'"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2016": "^6.16.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.2",
"gulp-clean": "^0.3.2",
"gulp-nodemon": "^2.2.1",
"gulp-util": "^3.0.7"
},
"dependencies": {
"aws-sdk": "^2.94.0",
"babel-preset-env": "^1.6.0",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"config": "^1.26.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.15.4",
"express-validation": "^1.0.2",
"express-winston": "^2.4.0",
"gulp-eslint": "^4.0.0",
"gulp-filter": "^4.0.0",
"he": "^1.1.1",
"helmet": "^3.8.1",
"http-status": "^1.0.1",
"joi": "^10.6.0",
"jsonwebtoken": "^7.4.2",
"lodash": "^4.17.4",
"method-override": "^2.3.9",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"mongoose": "^4.11.5",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"node-fetch": "^1.7.1",
"path": "^0.12.7",
"qs": "^6.5.0",
"winston": "^2.3.1"
}
}