-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 763 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 763 Bytes
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
{
"name": "airpodsmax_clone",
"private": true,
"scripts": {
"dev": "next dev -p 3006",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js --ignore-pattern node_modules/",
"lint-fix": "eslint --fix . --ext .js --ignore-pattern node_modules/"
},
"dependencies": {
"gsap": "^3.9.1",
"next": "12.0.9",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.49.0"
},
"devDependencies": {
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
}
}