forked from canjalal/MERN-Chirper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "heard-app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "dotenv nodemon ./bin/www --inspect",
"backend-install": "npm install",
"backend": "npm run dev",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"frontend-build": "npm run build --prefix frontend",
"build": "npm run backend-install && npm run frontend-install && npm run frontend-build"
},
"dependencies": {
"@chakra-ui/react": "^2.3.4",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"debug": "~2.6.9",
"dotenv-cli": "^6.0.0",
"eiows": "^4.1.2",
"express": "~4.16.1",
"express-async-handler": "^1.2.0",
"express-validator": "^6.14.2",
"framer-motion": "^7.3.6",
"http": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"morgan": "~1.9.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react-countdown-circle-timer": "^3.0.9",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"stream-http": "^3.2.0",
"util": "^0.12.4"
},
"devDependencies": {
"dotenv": "^16.0.2",
"nodemon": "^2.0.20"
},
"description": "Building a safe, anonymous, active listening community together.",
"repository": {
"type": "git",
"url": "git+https://github.com/k3tang/Heard---MERN-2.git"
},
"keywords": [],
"author": "Anna Fisher, Dan Kam, Karen Siu, Vincent Shuali",
"license": "ISC",
"bugs": {
"url": "https://github.com/k3tang/Heard---MERN-2/issues"
},
"homepage": "https://github.com/k3tang/Heard---MERN-2#readme",
"engines": {
"node": "16.x"
}
}