-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "2024-09-p2-starter",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"module": "true",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run client:build && npm run server",
"start:dev": "concurrently \"npm run server:dev\" \"wait-on tcp:3001 && npm run client:dev\"",
"server": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"install": "cd server && npm i && cd ../client && npm i",
"client:build": "cd client && npm run build",
"client:dev": "cd client && npm run dev",
"build": "cd server && npm run build",
"seed": "cd server && npm run seed",
"render-build": "npm install && npm run build",
"prepare": "husky"
},
"lint-staged": {
"client/src/**/*.{ts,jsx,json}": [
"cd client && npx eslint --fix",
"prettier --write"
],
"server/**/*.{js,jsx,json}": [
"cd server && npx eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.0.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "3.3.3",
"wait-on": "^8.0.1"
}
}