-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.53 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
{
"name": "api-product",
"version": "1.0.0",
"description": "Product related micro-services",
"author": "Rinesh",
"license": "MIT",
"main": "index.js",
"scripts": {
"gulp": "gulp",
"build": "npm run build:init && npm run build:js && npm run build:install",
"build:init": "rm -rf dist && mkdir dist",
"build:js": "babel index.js --out-dir dist && babel src --out-dir dist/src && babel shared --out-dir dist/shared",
"build:install": "rm -rf node_modules && cp package.json dist/ && cd dist && npm install --production",
"test": "mocha -r babel-register -r babel-polyfill --recursive test/",
"mock": "npm run build:js && node -r babel-register -r babel-polyfill mock/run.js"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"lodash": "^4.17.11",
"mongoose": "^5.13.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"aws-sdk": "^2.958.0",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.9.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"lodash": "^4.17.4"
}
}