-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1007 Bytes
/
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
{
"name": "BasicNextRBAC",
"version": "1.0.0",
"description": "next 12 role-based access control",
"main": "index.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"author": "Valentin Panov",
"license": "GNU AGPLv3",
"dependencies": {
"next": "^12.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.4",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "4.6.3"
}
}