-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "calendar-microservice",
"version": "0.0.1",
"description": "calendar microservice",
"main": "app.js",
"repository": "https://github.com/jwoo92/calendar-microservice.git",
"author": "Justin Woodward <justinwoodward92@gmail.com>",
"license": "MIT",
"private": true,
"engines": {
"node": "6.11.x",
"yarn": "1.2.x",
"npm": "5.5.x"
},
"now": {
"dotenv": "variables.env.now"
},
"scripts": {
"prod:build": "rimraf dist && babel app -d dist && cross-env NODE_ENV=production webpack -p",
"prod:start": "heroku local",
"heroku-postbuild": "yarn prod:build",
"dev": "nodemon app/start.js --exec babel-node --ignore public/",
"start": "NODE_ENV=production node ./dist/start.js",
"lint": "eslint app --ext .js",
"fix": "eslint webpack.config.babel.js app --ext .js --fix",
"test": "yarn lint && jest --coverage"
},
"dependencies": {
"axios": "^0.17.0",
"babel-plugin-transform-runtime": "^6.23.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"debug": "~2.6.9",
"dotenv": "^4.0.0",
"es6-promisify": "^5.0.0",
"express": "~4.15.5",
"express-validator": "^4.2.1",
"morgan": "~1.9.0",
"pug": "^2.0.0-rc.4"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.2.0",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"now": "^8.3.10",
"postcss-loader": "^2.0.8",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"webpack": "^3.8.1"
}
}