-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"license": "MIT",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"generate": "./generate",
"build": "turbo run build",
"vercel-build": "turbo run vercel-build",
"dev": "turbo run dev --parallel",
"start": "turbo run start",
"test": "turbo run test:no-watch",
"lint": "turbo run lint",
"tsc": "turbo run tsc",
"clean": "turbo run clean",
"local:push": "turbo local:push",
"local:seed": "turbo local:seed",
"kill": "fuser -k 5143/tcp 3000/tcp",
"psql": "docker exec -it postgres_db_discord_twitch_app psql",
"keepalive": "node bin/scripts/keepalive.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.47.1",
"eslint": "^8.28.0",
"eslint-config-custom": "workspace:*",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-turbo": "latest",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-turbo": "latest",
"prettier": "^2.7.1",
"turbo": "latest",
"typescript": "4.9.4"
},
"packageManager": "[email protected]",
"dependencies": {
"eslint-plugin-unused-imports": "^2.0.0"
}
}