-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 959 Bytes
/
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
{
"name": "express-talk-NCJS",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"lodash": "^4.17.5",
"nodemon": "^1.17.3"
},
"scripts": {
"babel-node": "babel-node --presets=env",
"start": "nodemon --exec npm run babel-node ./src/index.js --inspect",
"build": "rm -rf dist/ && npm run build:src",
"build:src": "babel src/ --out-dir=dist --source-maps",
"watch": "npm run build:src --watch"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
],
"sourceMaps": true,
"retainLines": true
}
}