-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "youtube-fast-playlist",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"typing:check": "tsc --noEmit",
"static:check": "npm run typing:check && npm run lint && npm run format:check",
"static:fix": "npm run lint:fix && npm run format:fix"
},
"dependencies": {
"@hapi/boom": "^9.1.4",
"@mantine/core": "^3.2.1",
"@mantine/hooks": "^3.2.1",
"@radix-ui/colors": "^0.1.7",
"@radix-ui/react-aspect-ratio": "^0.1.1",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-radio-group": "^0.1.1",
"@stitches/react": "^1.2.5",
"axios": "^0.24.0",
"next": "12.0.4",
"pino": "^7.3.0",
"pino-pretty": "^7.2.0",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.33.2",
"react-youtube": "^7.13.1",
"zustand": "^3.6.5"
},
"devDependencies": {
"@types/node": "16.11.9",
"@types/react": "17.0.35",
"eslint": "7",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"typescript": "4.5.2"
}
}