-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.28 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": "random-fy",
"version": "1.20.0",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:andraderaul/random-fy"
},
"scripts": {
"release:dry": "semantic-release --dry-run",
"release": "semantic-release",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "is-ci || husky install",
"typecheck": "yarn tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"engines": {
"node": ">=18.x.x"
},
"dependencies": {
"@babel/preset-typescript": "^7.16.7",
"@heroicons/react": "^1.0.5",
"axios": "^1.4.0",
"html2canvas": "^1.4.1",
"i18next": "^22.4.15",
"next": "^13.3.1",
"next-i18next": "^13.2.2",
"next-pwa": "^5.6.0",
"nextjs-progressbar": "^0.0.13",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.2.0",
"react-i18next": "^12.2.2",
"react-query": "^3.39.3",
"react-use": "^17.4.0",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@jackfranklin/test-data-bot": "^1.4.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.3.56",
"@swc/jest": "^0.2.26",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"autoprefixer": "^10.4.2",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^12.3.4",
"msw": "^1.2.1",
"postcss": "^8.4.6",
"prettier": "^2.8.8",
"semantic-release": "^19.0.2",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
}
}