-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.95 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
{
"name": "litera",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "npm-run-all --serial lint",
"lint": "npm-run-all --serial lint:scripts lint:text",
"lint:commit": "yarn commitlint --verbose --color --from $(git merge-base origin/main HEAD)",
"lint:scripts": "next lint",
"lint:text": "textlint ./",
"lint:text:fix": "yarn lint:text --fix",
"format": "yarn format:check",
"format:check": "prettier --check ./",
"format:fix": "prettier --write ./"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "5.22.0",
"bcrypt": "^5.1.1",
"eslint": "8.57.1",
"eslint-config-next": "15.0.3",
"next": "15.0.3",
"next-auth": "^5.0.0-beta.25",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"sass": "^1.57.1",
"typescript": "4.9.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^8.4.0",
"@lmc-eu/prettier-config": "^2.0.1",
"@lmc-eu/textlint-rule-preset-lmc": "^2.0.1",
"@types/bcrypt": "^5",
"@types/node": "18.19.64",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"commitlint": "^19.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"prettier-plugin-toml": "^2.0.1",
"prisma": "^5.22.0",
"sass-embedded": "^1.80.6",
"textlint": "^14.3.0",
"tsx": "^4.19.2",
"vercel": "^37.7.1"
},
"packageManager": "[email protected]",
"prisma": {
"schema": "src/database/schema.prisma",
"seed": "tsx src/database/seed.ts"
},
"resolutions": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}