forked from filahf/r3f-spotify-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.2 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": "next-audio-game",
"version": "1.0.0",
"authors": [
"Filip ÅHFELT <https://github.com/filahf>"
],
"license": "MIT",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@react-spring/three": "^9.4.4",
"@react-spring/web": "^9.4.4",
"@react-three/drei": "^8.16.5",
"@react-three/fiber": "^7.0.26",
"@react-three/postprocessing": "^2.2.4",
"chakra-ui-steps": "^1.6.2",
"chalk": "^5.0.1",
"framer-motion": "^6.2.8",
"next": "^12.1.0",
"next-auth": "^4.10.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-is": "^17.0.2",
"spotify-web-api-node": "^5.0.2",
"three": "^0.138.3",
"three-stdlib": "^2.8.8",
"zustand": "^3.7.1"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/spotify-web-api-node": "^5.0.7",
"@types/spotify-web-playback-sdk": "^0.1.12",
"@types/styled-components": "^5.1.24",
"@types/three": "^0.138.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-plugin-glsl": "^1.0.0",
"eslint": "^8.11.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"typescript": "^4.6.2",
"url-loader": "^4.1.1"
},
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --fix --dir src",
"prettier": "prettier --list-different \"./src/**/*.{ts,tsx,md}\"",
"dev": "next dev",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"start": "next start",
"prepare": "husky install"
},
"packageManager": "[email protected]",
"lint-staged": {
".": [
"yarn lint",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}