-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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": "transcendence",
"author": "arraji",
"license": "MIT",
"scripts": {
"dev:client": "npm run dev --workspace=client",
"dev:server": "npm run start:dev --workspace=server",
"build": "npm run build --workspaces",
"start": "npm run start --workspaces",
"lint": "eslint \"client/**/*.{ts,tsx,js}\" \"server/**/*.{ts,js}\" --ignore-pattern 'server/dist/*' --fix",
"format": "prettier --write \"client/**/*.{ts,tsx,js}\" \"server/**/*.{ts,js}\""
},
"devDependencies": {
"eslint": "^7.32.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1"
},
"workspaces": [
"client",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/estarossa0/transcendence.git"
},
"bugs": {
"url": "https://github.com/estarossa0/transcendence/issues"
},
"homepage": "https://github.com/estarossa0/transcendence#readme",
"prisma": {
"schema": "./server/src/prisma/schema.prisma"
}
}