forked from sfbrigade/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
64
65
66
67
68
69
70
71
72
{
"name": "project-compass",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"test": "ava",
"test:watch": "ava --watch",
"db:migrate": "npx tsx src/backend/scripts/migrate-database.ts",
"db:reset": "npx tsx src/backend/scripts/reset-database.ts",
"prepare": "husky install",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@next/font": "13.1.6",
"@tanstack/react-query": "^4.24.10",
"@trpc/client": "^10.16.0",
"@trpc/react-query": "^10.16.0",
"@trpc/server": "^10.16.0",
"axios": "^1.3.2",
"dotenv": "16.0.3",
"kysely": "^0.23.4",
"ms": "^2.1.3",
"next": "13.1.6",
"next-auth": "^4.20.1",
"pg": "^8.9.0",
"pg-connection-string": "^2.5.0",
"postgres-migrations": "^5.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"winston": "^3.8.2",
"zapatos": "^6.1.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@ava/get-port": "^2.0.0",
"@trpc/client": "^10.16.0",
"@types/ms": "^0.7.31",
"@types/node": "^18.11.18",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"ava": "^5.1.1",
"ava-postgres": "^3.0.0",
"esbuild": "^0.17.5",
"esbuild-register": "^3.4.2",
"eslint": "^8.34.0",
"eslint-config-next": "13.1.6",
"foreman": "^3.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "2.8.3",
"tsx": "^3.12.6",
"type-fest": "^3.5.4",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
}
}