-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "livefromquarantine.club",
"description": "livefromquarantine.club songs",
"version": "1.0.0",
"author": "Luke Karrys <luke@lukekarrys.com>",
"bugs": {
"url": "https://github.com/lukekarrys/livefromquarantine.club/issues"
},
"devDependencies": {
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
},
"homepage": "https://github.com/lukekarrys/livefromquarantine.club#readme",
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"license": "MIT",
"prettier": {
"semi": false,
"singleQuote": true
},
"prisma": {
"schema": "./server/prisma/schema.prisma"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/lukekarrys/livefromquarantine.club.git"
},
"scripts": {
"build": "npm run build -ws",
"check": "npm run check -ws",
"data": "npm run data -w server",
"data:cache": "npm run data:cache -w server",
"data:fixtures": "npm run data:fixtures -w server",
"data:seed": "npm run data:seed -w server",
"db:migrate": "npm run db:migrate -w server",
"dev": "run-p dev:**",
"dev:client": "npm run dev -w client",
"dev:server": "npm run dev -w server",
"lint": "npm run lint -ws",
"postinstall": "patch-package && prisma generate",
"precommit": "npm run precommit -ws",
"test": "npm run test -ws",
"trigger": "npm run trigger -w server"
},
"volta": {
"node": "15.12.0",
"npm": "7.8.0"
},
"workspaces": [
"client/",
"server/"
]
}