-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "webapp",
"version": "1.0.0",
"description": "",
"main": "app.js",
"homepage": ".",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "node server.js",
"client": "cd client && npm run start",
"build": "cd client && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@mongoosejs/double": "^0.2.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"create-react-app": "^4.0.3",
"crypto": "^1.0.1",
"csurf": "^1.11.0",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-generator": "^4.16.1",
"express-session": "^1.17.1",
"framer-motion": "^4.1.17",
"memorystore": "^1.6.6",
"mongodb": "^3.6.6",
"mongoose": "^5.12.9",
"mongoose-fuzzy-searching": "^2.0.2",
"path": "^0.12.7",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.12.0",
"concurrently": "^6.1.0",
"nodemon": "^2.0.7"
}
}