-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 796 Bytes
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
{
"name": "node-beginner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"debug": "babel-node ./app/index.js $NODE_DEBUG_OPTION server.js",
"babel-start": "babel-node ./app/index.js",
"nodemon-start": "nodemon -w app --exec \"npm run babel-start\"",
"build": "babel app/ -d build/",
"clean": "rm -rf build/",
"start": "node ./build/index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-loader": "^6.2.10",
"babel-plugin-import": "^1.1.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-3": "^6.17.0",
"nodemon": "^1.11.0"
}
}