-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 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
72
73
74
75
76
77
78
79
80
{
"name": "music.ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@auth0/auth0-react": "^2.0.0",
"@chakra-ui/core": "^0.8.0",
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.5.1",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^9.0.1",
"@vercel/analytics": "^1.1.3",
"axios": "^1.3.5",
"bcryptjs": "^2.4.3",
"chakra-color-picker": "^0.0.6",
"cookie": "^0.5.0",
"dotenv": "^16.0.3",
"formik": "^2.2.9",
"framer-motion": "^6.4.1",
"next": "12.1.6",
"next-auth": "^4.18.5",
"next-google-fonts": "^2.2.0",
"node-fetch": "^3.3.1",
"react": "^18.2.0",
"react-audio-player": "^0.17.0",
"react-color-palette": "^6.2.0",
"react-color-picker": "^4.0.2",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-globe.gl": "^2.23.3",
"react-icons": "^4.4.0",
"react-media-recorder": "^1.6.6",
"react-player": "^2.11.2",
"react-wavify": "^1.5.7",
"react-youtube": "^10.1.0",
"recharts": "^2.1.12",
"redis": "^4.6.5",
"socket.io-client": "^4.6.2",
"styled-components": "^5.3.5",
"swiper": "^8.2.4",
"swr": "^2.1.2",
"tone": "^14.7.77",
"uuid": "^9.0.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/node-fetch": "^2.6.3",
"@types/react": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-import": "^1.13.5",
"eslint": "^7.25.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"mongoose": "^6.8.0",
"prettier": "2.2.1",
"typescript": "^4.2.4"
},
"resolutions": {
"@types/react": "17.0.4",
"@types/react-dom": "17.0.4"
}
}