generated from ctc-uci/npo-template-merged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "npo-template-merged",
"version": "1.0.0",
"private": true,
"type": "module",
"repository": "[email protected]:ctc-uci/npo-template-merged.git",
"author": "CTC <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "yarn tsx concurrently.ts",
"start": "yarn tsx concurrently.ts",
"prepare": "husky install",
"lint": "eslint",
"format": "npx prettier --write .",
"postinstall": "cd client && patch-package"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "yarn run eslint"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/lint-staged": "^13.3.0",
"concurrently": "^8.2.2",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"husky": "^9.0.11",
"prettier": "3.3.3",
"typescript-eslint": "^8.1.0"
},
"workspaces": {
"packages": [
"client",
"server"
],
"nohoist": [
"**/firebase",
"**/firebase/**"
]
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}