forked from Together-100Devs/Together
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.5 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
{
"name": "Together",
"version": "1.0.0",
"description": "Together is a new app designed for 100devs. Together is a group calendar for public events, so you can see what's going on in your community. We're making it easier to find out about the events that are happening in Discord and let you know how much fun they'll be!",
"main": "server.js",
"scripts": {
"start": "cd server && node server.js",
"dev": "npm --prefix server run dev",
"build": "npm --prefix client run build",
"dev-concurrent": "concurrently \"npm:start-client\" \"npm:dev\"",
"start-client": "npm --prefix client start",
"start-mockServer": "npm --prefix client run dev",
"dev-concurrent-mockServer": "concurrently \"npm:start-client\" \"npm:start-mockServer\"",
"postinstall": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"author": "",
"license": "MIT",
"dependencies": {
"cloudinary": "^1.25.1",
"compass": "^0.1.1",
"connect-mongo": "^3.2.0",
"date-fns": "^2.29.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.1",
"framer-motion": "^7.6.17",
"method-override": "^3.0.0",
"mongodb": "^3.7.3",
"mongoose": "^5.12.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^4.0.0",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"react-icons": "^4.7.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"autoprefixer": "^10.4.13",
"axios": "^1.1.3",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"http-proxy-middleware": "^2.0.6",
"json-server": "^0.17.1",
"mongodb-memory-server": "^8.10.1",
"postcss": "^8.4.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.3",
"react-scripts": "5.0.1",
"tailwindcss": "^3.2.2",
"validator": "^13.6.0",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}