-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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": "log",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings=0",
"next:lint": "next lint",
"typecheck": "tsc --project tsconfig.json --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*": [
"npm run lint --fix"
]
},
"dependencies": {
"@prisma/client": "^2.28.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"next": "11.0.1",
"next-connect": "^0.10.2",
"next-pwa": "^5.2.24",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"prisma": "^2.28.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.4.12",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/react": "^17.0.15",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5"
}
}