-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"homepage": "https://luisa.dev/",
"main": "src/index.js",
"name": "luisabfs",
"version": "0.1.0",
"private": true,
"scripts": {
"clear": "rm -rf node_modules && rm -rf yarn.lock && yarn",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"axios": "^0.21.1",
"eslint-config-next": "^13.4.4",
"eslint-config-react": "^1.1.7",
"next": "^13.4.4",
"node-notifier": "^8.0.1",
"object-path": "^0.11.5",
"prettier": "^1.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^3.7.0",
"react-loading-skeleton": "^3.3.1",
"react-router-hash-link": "^1.2.2",
"react-youtube": "^10.1.0",
"styled-components": "^5.3.0",
"typescript": "^4.8.3",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-router-hash-link": "^2.4.5",
"@types/styled-components": "^5.1.26",
"@types/youtube-player": "^5.5.7",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0"
},
"resolutions": {
"@types/react": "18.0.20"
}
}