-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.4 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": "vite-boilerplate",
"version": "1.0.0",
"description": "Vite, React, Node, Express, TypeScript, SSL, and Docker",
"main": "index.js",
"scripts": {
"test": "test",
"frontend:dev": "npm run dev --workspace=frontend",
"backend:dev": "npm run dev --workspace=backend",
"dev": "concurrently \"npm run frontend:dev\" \"npm run backend:dev\"",
"frontend:build": "npm run build --workspace=frontend",
"backend:build": "npm run build --workspace=backend",
"build": "concurrently \"npm run frontend:build\" \"npm run backend:build\"",
"start": "npm start --workspace=backend",
"lint": "eslint .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json|tsx|jsx|scss|html)\"",
"install-deps": "npm install --workspaces",
"frontend:install": "npm install --workspace=frontend",
"backend:install": "npm install --workspace=backend"
},
"author": "timchang87",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"playwright": "^1.45.1",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"workspaces": [
"apps/frontend",
"apps/backend"
]
}