-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.97 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "next-ts-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings=0",
"test": "jest --bail --watch",
"test:staged": "jest --bail --findRelatedTests --passWithNoTests",
"test:unit": "jest --bail --ci --coverage --passWithNoTests",
"cz": "czg",
"prepare": "husky install",
"storybook": "start-storybook -s ./public -p 6006",
"storybook:build": "build-storybook -s ./public",
"generate": "plop --plopfile ./generators/plopfile.js"
},
"dependencies": {
"@agney/react-loading": "^0.1.2",
"@headlessui/react": "^1.6.6",
"@tanstack/react-query": "^4.0.10",
"async-retry": "^1.3.3",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"next": "12.2.1",
"next-auth": "^4.10.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.3.0",
"react-hotjar": "^5.0.0",
"react-icons": "^4.4.0",
"recoil": "^0.7.4",
"spotify-web-api-node": "^5.0.2",
"styled-components": "^5.3.5",
"tailwind-scrollbar-hide": "^1.1.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/cli": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@tanstack/react-query-devtools": "^4.0.10",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/async-retry": "^1.4.4",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/spotify-web-api-node": "^5.0.7",
"@types/styled-components": "^5.1.25",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"czg": "^1.3.9",
"eslint": "8.19.0",
"eslint-config-next": "12.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.13",
"husky": "^8.0.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-styled-components": "^7.0.8",
"lint-staged": "^13.0.3",
"plop": "^3.1.1",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"storybook": "^6.5.9",
"tailwindcss": "^3.1.7",
"typescript": "4.7.4"
}
}