-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 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
44
45
46
47
48
49
50
{
"name": "appcenter",
"version": "0.1.0",
"type": "module",
"repository": "git+https://github.com/un-ts/appcenter.git",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "tsx scripts/build",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"start": "vc dev"
},
"devDependencies": {
"@1stg/common-config": "^10.0.0",
"@octokit/request": "^8.1.6",
"@types/web": "^0.0.138",
"commitlint": "^18.6.0",
"eslint": "^8.56.0",
"lint-staged": "^15.2.1",
"npm-run-all": "^4.1.5",
"simple-git-hooks": "^2.9.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vercel": "^33.4.1"
},
"resolutions": {
"prettier": "^3.2.5"
},
"commitlint": {
"extends": "@1stg"
},
"eslintConfig": {
"extends": "@1stg"
},
"eslintIgnore": [
"/public/index.html",
"!/.*.js"
],
"prettier": "@1stg/prettier-config",
"renovate": {
"extends": [
"@1stg"
]
}
}