forked from stackrr/stackr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 KB
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
{
"name": "stackr",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"dev": "concurrently \"vite --host\" \"nodemon server/server.js\"",
"server": "nodemon server/server.js",
"vite": "vite",
"start": "nodemon server/server.js",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --reporter verbose"
},
"dependencies": {
"@headlessui/react": "^1.7.11",
"@headlessui/tailwindcss": "^0.1.2",
"chart.js": "^4.2.1",
"concurrently": "^7.6.0",
"express": "^4.18.2",
"google-trends-api": "^4.9.2",
"mongodb": "^5.0.1",
"mongoose": "^6.9.2",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-elastic-carousel": "^0.11.5",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.8.1",
"react-use": "^17.4.0",
"styled-components": "^5.3.6",
"vite": "^4.1.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^21.1.0",
"postcss": "^8.4.21",
"prettier": "2.8.4",
"tailwindcss": "^3.2.7",
"vitest": "^0.28.5"
}
}