-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"private": true,
"scripts": {
"debug": "node --inspect-brk node_modules/.bin/next dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "npx eslint --fix --ext .js,.ts,.tsx .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(vue|js|jsx|ts|tsx|json|css|scss|md|html)\""
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"lodash": "^4.17.21",
"next": "latest",
"next-auth": "^4.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.5.2",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"@types/spotify-web-api-node": "^5.0.6",
"autoprefixer": "^10.4.0",
"eslint": "8.6.0",
"eslint-config-next": "12.0.8",
"eslint-plugin-simple-import-sort": "^7.0.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.7",
"typescript": "4.5.4"
}
}