-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "ci",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*"
],
"scripts": {
"lint": "npx turbo lint --parallel",
"build": "NODE_ENV=production npx turbo run build --cache-dir=.turbo",
"build:js": "NODE_ENV=production npx turbo run build:js --cache-dir=.turbo",
"dev": "npx turbo dev --parallel",
"check:types": "npx turbo check:types --parallel",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"sh -c 'npm run lint'"
]
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-run": "^3.0.2",
"@types/chalk": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"chalk": "^5.3.0",
"eslint": "^8.57.0",
"eslint-config-love": "^43.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"short-uuid": "^4.2.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"turbo": "^1.13.0",
"type-fest": "^4.14.0",
"typescript": "^5.4.3"
}
}