forked from zws-im/zws
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
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
{
"name": "@zws.im/zws",
"version": "0.0.0-development",
"private": true,
"bugs": {
"url": "https://github.com/zws-im/zws/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zws-im/zws.git"
},
"license": "Apache-2.0",
"author": {
"name": "Jonah Snider",
"email": "jonah@jonah.pw",
"url": "https://jonahsnider.com"
},
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build --",
"clean": "turbo run clean",
"lint": "turbo run lint --",
"migrations": "prisma migrate deploy",
"start": "yarn workspace @zws.im/api start",
"style": "turbo run style --",
"style-prisma": "yarn run prisma format && git diff --exit-code -s prisma/schema.prisma",
"test": "yarn validate-prisma && yarn style-prisma && turbo run build style lint test test:e2e",
"validate-prisma": "prisma validate"
},
"prettier": "@jonahsnider/prettier-config",
"dependencies": {
"prisma": "3.15.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.5",
"@changesets/cli": "2.23.0",
"@jonahsnider/prettier-config": "1.1.1",
"prettier": "2.6.2",
"turbo": "1.2.16"
},
"engines": {
"node": "16.x"
},
"packageManager": "yarn@3.2.1",
"resolutions": {
"@google-cloud/profiler@4.2.0": "patch:@google-cloud/profiler@npm:4.2.0#.yarn/patches/@google-cloud-profiler-npm-4.2.0-184d89f421.patch"
}
}