-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 782 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 782 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
28
{
"name": "node-template",
"version": "0.0.1",
"description": "node template by gulp and babel",
"main": "index.js",
"scripts": {
"start": "nodemon ./src --exec babel-node",
"build": "babel ./src -d ./dist",
"deploy": "npm run build && node ./dist",
"test": "echo \"No test specified\" && exit 0"
},
"author": "smshen",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.10.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"babel-runtime": "^6.26.0"
}
}