-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
41 lines (41 loc) · 1005 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
{
"name": "SitedoBem",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"fix": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"axios": "^0.19.2",
"next": "^10.0.0",
"next-images": "^1.4.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga": "^2.7.0",
"react-lottie": "^1.2.3",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.10.7",
"dotenv": "^8.2.0",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2"
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb"
]
}
}