-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
{
"name": "npo-template-merged",
"version": "1.0.0",
"private": true,
"type": "module",
"repository": "git@github.com:ctc-uci/npo-template-merged.git",
"author": "CTC <ctc@uci.edu>",
"license": "MIT",
"scripts": {
"dev": "yarn tsx concurrently.ts",
"start": "yarn tsx concurrently.ts",
"prepare": "husky",
"test": "node test-runner.js",
"test:server": "yarn workspace server test",
"test:client": "yarn workspace client test",
"lint": "eslint . --fix",
"format": "prettier --write .",
"fix": "yarn format && yarn lint"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/lint-staged": "^13.3.0",
"concurrently": "^8.2.2",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^15.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript-eslint": "^8.1.0"
},
"workspaces": {
"packages": [
"client",
"server"
],
"nohoist": [
"**/firebase",
"**/firebase/**",
"**/patch-package",
"**/patch-package/**",
"**/postinstall-postinstall",
"**/postinstall-postinstall/**",
"**/vite",
"**/vite/**",
"**/@vitejs/plugin-react",
"**/@vitejs/plugin-react/**"
]
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"react-icons": "^5.5.0"
}
}