-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
42
43
{
"name": "new-dev-setup",
"version": "2.3.0",
"main": "dist/setup.js",
"module": "src/index.js",
"repository": "https://github.com/gsandf/new-dev-setup.git",
"author": "GS&F Devs <[email protected]> (https://gsandf.com/)",
"license": "MIT",
"files": [
"src/**",
"dist/**"
],
"eslintConfig": {
"extends": "gsandf",
"parser": "babel-eslint"
},
"scripts": {
"build": "NODE_ENV=production webpack -p && pkg -o ./dist/setup -t node12-macos dist/setup.js",
"dev": "babel-node --inspect src/index.js",
"lint": "eslint src",
"prepublish": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-gsandf": "^1.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"pkg": "^4.3.4",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"app-exists": "^1.0.0",
"app-path": "^3.2.0",
"axios": "^0.21.1",
"execa": "^3.2.0",
"inquirer": "^7.0.0",
"signale": "^1.3.0"
}
}