-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.15 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
{
"name": "final-project-server",
"version": "2.0.0",
"private": true,
"description": "A full stack JavaScript solo project.",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node server/server.js",
"build": "npm run build --prefix client",
"db:import": "sh database/import.sh",
"dev:db": "pgweb --db=`awk 'BEGIN { FS = \"/\" } ; /DATABASE_URL=/ {print $NF}' server/.env`",
"dev:client": "npm run start --prefix client",
"dev:server": "npm run dev --prefix server",
"dev": "npm-run-all --parallel --print-label dev:*",
"install:client": "npm install --prefix client",
"install:server": "npm install --prefix server",
"install:env": "test -f server/.env || cp server/.env.example server/.env",
"postinstall": "run-s install:*",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markuplint": "^2.11.0"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"react-router-dom": "^6.10.0"
}
}