-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
44
45
46
{
"name": "bootstrap-node",
"private": true,
"version": "1.3.0",
"description": "Install globally: `npm install -g .`",
"type": "module",
"main": "./bin/main.js",
"bin": {
"bootstrap-node": "bin/main.js"
},
"scripts": {
"config:setup": "node ./bin/checkConfig.js",
"dev": "npm run dev:clean && node ./bin/bootstrapDevProject.js",
"dev:clean": "rm -rf ./test-project",
"install:global": "npm run config:setup && npm install -g .",
"prepare": "husky install",
"start": "node ./bin/main.js",
"test": "echo \"Warning: no test specified\""
},
"keywords": [],
"author": "Dave Schumaker <[email protected]>",
"license": "MIT",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"dependencies": {
"@inquirer/prompts": "5.1.2",
"app-root-path": "3.1.0",
"chalk": "5.3.0",
"cli-box": "6.0.10",
"replace-in-file": "6.3.5",
"shelljs": "0.8.5",
"validate-npm-package-name": "5.0.1"
},
"devDependencies": {
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"prettier": "3.3.2"
}
}