-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 969 Bytes
/
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
{
"name": "monorepo",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/lvjiaxuan/create-app"
},
"scripts": {
"watch": "rimraf dist && esno esbuild.config --watch",
"build": "esno esbuild.config",
"lint": "eslint \"packages/**/*.js\"",
"version:patch": "npm version patch --no-git-tag-version"
},
"bugs": {
"url": "https://github.com/lvjiaxuan/create-app/issues"
},
"homepage": "https://github.com/lvjiaxuan/create-app#readme",
"engines": {
"node": ">=16",
"pnpm": ">=6"
},
"devDependencies": {
"@types/node": "^17.0.31",
"esbuild": "^0.14.38",
"esbuild-plugin-clean": "^0.9.0",
"eslint": "^8.14.0",
"esno": "^0.14.1",
"glob": "^8.0.1",
"husky": "^7.0.4",
"minimist": "^1.2.6",
"prettier": "^2.6.2",
"rimraf": "^3.0.2"
},
"eslintIgnore": [],
"eslintConfig": {
"extends": "./packages/create-app/src/tools/eslint/.eslintrc.js"
}
}