-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 962 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
{
"name": "legislature-site-frontend",
"private": true,
"scripts": {
"dev": "next dev ./src/",
"build": "next build ./src/",
"start": "next start ./src/",
"lint": "yarn eslint ./src/ --fix",
"lint:check": "yarn eslint ./src/"
},
"dependencies": {
"dotenv": "^11.0.0",
"mongoose": "^6.1.6",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-paginate": "^8.1.0",
"tailwindcss": "^3.0.17"
},
"devDependencies": {
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-next": "12.0.7",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.5",
"typescript": "^4.5.4"
}
}