-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 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
{
"name": "soundy",
"version": "1.0.0",
"description": "All about the sound",
"scripts": {
"build": "vite build",
"check:full": "npm run typescript && npm run eslint && npm run test",
"compile": "graphql-codegen -r dotenv/config",
"dev": "vite --host",
"eslint": "eslint .",
"init": "concurrently \"npm run lyrics-library\" \"npm run dev\"",
"server": "cd ../lyrics-library && yarn dev",
"test": "vitest --watch=false",
"typescript": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnthonyBourret/Soundy.git"
},
"contributors": [
{
"name": "Anthony Bourret",
"url": "https://github.com/AnthonyBourret"
},
{
"name": "Guillaume Jolibois",
"url": "https://github.com/Joliwood",
"email": "jolibois.contact@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.8.8",
"@graphql-codegen/cli": "^5.0.2",
"@reduxjs/toolkit": "^2.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.12.7",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"daisyui": "^4.4.14",
"framer-motion": "^11.2.0",
"graphql": "^16.8.1",
"i18next": "^23.7.6",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.4.1",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-cookie": "^7.1.4",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.4.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.18.0",
"tailwindcss": "^3.3.5",
"validator": "^13.11.0",
"vite": "^4.5.0"
},
"devDependencies": {
"@graphql-codegen/client-preset": "^4.2.4",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react-redux": "^7.1.33",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
}
}