-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
79 lines (79 loc) · 2.08 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "create-neat",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --concurrency=15",
"lint:turbo": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,cjs,mjs,json}\"",
"format:ci": "prettier --list-different \"**/*.{ts,tsx,js,jsx}\"",
"lint": "eslint \"**/*.{ts,tsx,js,jsx}\" --fix",
"lint:ci": "eslint \"**/*.{ts,js}\"",
"commit": "git-cz",
"postinstall": "husky install",
"check:turbo": "turbo check",
"prepare": "husky"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"pnpm format:ci",
"pnpm lint:ci"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/xun082/create-neat.git"
},
"keywords": [
"performance",
"vue",
"react"
],
"author": "Moment",
"license": "MIT",
"bugs": {
"url": "https://github.com/xun082/pre-sentry/issues"
},
"homepage": "https://github.com/xun082/pre-sentry",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.11.22",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"commitizen": "^4.3.0",
"cz-git": "^1.7.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.6.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"turbo": "^2.0.6",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18",
"pnpm": "9.4.0"
},
"engineStrict": true,
"packageManager": "[email protected]"
}