-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "mysite",
"version": "1.0.0",
"description": "",
"scripts": {
"client": "npm start -w ./frontend/",
"server": "npm run start -w ./backend/",
"build:client": "npm run build -w ./frontend/",
"build:server": "cd ./backend/ && npm run build",
"prod:server": "cd ./backend/ && npm run start:prod",
"start": "npm run build:server && npm run prod:server",
"format": "npm run format && npm run lint:fix",
"precommit": "cd backend && npm run format && cd ../frontend && npm run format",
"prepare": "if [[ $NODE_ENV != \"production\" ]]; then husky install; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grwadl/mysite.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"./backend/",
"./frontend/",
"./shared/"
],
"bugs": {
"url": "https://github.com/grwadl/mysite/issues"
},
"homepage": "https://github.com/grwadl/mysite#readme",
"dependencies": {
"react": "^18.2.0",
"react-hook-form": "^7.41.3"
},
"optionalDependencies": {
"husky": "^8.0.2"
},
"devDependencies": {
"@types/node": "^18.11.18"
}
}