-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "wesketch",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm run build",
"devClient": "cd client && npm run dev",
"server": "cd server && npm run start",
"devServer": "cd server && npm run dev",
"dev": "concurrently \"npm run devClient\" \"npm run devServer\"",
"build": "cd client && npm run build",
"start": "cross-env NODE_ENV=production concurrently \"npm run client\" \"npm run server\"",
"setup": "npm install && cd client && npm install && npm run build && cd ../server && npm install",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react": "^4.3.0",
"babel-eslint": "^10.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"globals": "^15.4.0",
"typescript-eslint": "^7.13.0",
"vite": "^5.2.12"
}
}