-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 2.2 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
59
60
61
62
63
{
"name": "senate",
"author": "Senate",
"private": true,
"license": "GNU GPLv3",
"workspaces": [
"apps/*",
"packages/*"
],
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
},
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"build:senate": "turbo run build:senate",
"build:shortie": "turbo run build:shortie",
"build:detective": "turbo run build:detective",
"build:refresher": "turbo run build:refresher",
"build:email-secretary": "turbo run build:email-secretary",
"build:discord-secretary": "turbo run build:discord-secretary",
"build:telegram-secretary": "turbo run build:telegram-secretary",
"build:slack-secretary": "turbo run build:slack-secretary",
"build:db": "turbo run build:db",
"build:db:node": "turbo run build:db:node",
"start": "turbo run start",
"start:senate": "turbo run start:senate",
"start:shortie": "turbo run start:shortie",
"dev": "turbo run dev --parallel",
"dev:senate": "turbo run dev:senate",
"db:push": "turbo run db:push",
"db:seed": "turbo run db:seed",
"db:generate": "turbo run db:generate",
"db:generate:node": "turbo run db:generate:node",
"clean": "turbo run clean && rimraf node_modules yarn-error.log",
"prettier": "turbo run prettier",
"prettier:fix": "turbo run prettier:fix",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"update": "rustup update && ncu -u && turbo run update && yarn",
"start-server": "yarn start:senate",
"test:ci": "xvfb-run yarn playwright test",
"test": "yarn playwright test",
"test:e2e:ci": "start-server-and-test start-server http://127.0.0.1:3000 test:ci",
"test:e2e": "start-server-and-test start-server http://127.0.0.1:3000 test"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@playwright/test": "^1.37.1",
"@synthetixio/synpress": "^3.7.1",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"tsx": "^3.12.8",
"turbo": "^1.10.13"
},
"packageManager": "[email protected]",
"dependencies": {
"rimraf": "^5.0.1"
}
}