-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 997 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
37
38
39
40
41
42
43
44
{
"name": "what-genre-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node server.js",
"lint": "eslint ."
},
"dependencies": {
"axios": "^0.26.1",
"express": "^4.17.1",
"nanoid": "^3.1.22",
"next": "12",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"prettier": "^2.2.1"
},
"eslintConfig": {
"settings": {
"import/resolver": {
"node": {
"paths": [
"."
]
}
}
}
}
}