-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "node-cli-base",
"version": "0.0.1",
"description": "Boilerplate Node CLI app",
"private": false,
"main": "entry.js",
"repository": "[email protected]:dlong500/node-cli-base.git",
"author": "Davison Long <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/*",
"start": "cross-env NODE_ENV=development node entry.js",
"cliapp": "cross-env NODE_ENV=production node entry.js",
"build": "yarn run clean && babel src --out-dir ./dist"
},
"bin": {
"cliapp": "entry.js"
},
"dependencies": {
"@babel/core": "^7.0.0",
"cross-env": "^7.0.2",
"del": "^4.1.1",
"slash": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-eslint": "^10.0.1",
"eslint": "^7.3.1",
"eslint-plugin-import": "^2.8.0"
}
}