Babel, request, async packages
parent
ef4165d746
commit
394acf0091
File diff suppressed because it is too large
Load Diff
13
package.json
13
package.json
|
@ -4,7 +4,9 @@
|
||||||
"description": "## Exercice",
|
"description": "## Exercice",
|
||||||
"main": "app.js",
|
"main": "app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
|
||||||
|
"start": "npm run build && node dist/index.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -18,10 +20,15 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/Sundowndev/interview-v2#readme",
|
"homepage": "https://github.com/Sundowndev/interview-v2#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"async": "^2.6.1",
|
||||||
"body-parser": "^1.18.3",
|
"body-parser": "^1.18.3",
|
||||||
"express": "^4.16.3"
|
"express": "^4.16.3",
|
||||||
|
"request": "^2.88.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"nodemon": "^1.18.3"
|
"babel-cli": "^6.26.0",
|
||||||
|
"babel-preset-es2015": "^6.24.1",
|
||||||
|
"nodemon": "^1.18.3",
|
||||||
|
"rimraf": "^2.6.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue