generated from benjaminbwright/vite-mern-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "vite-mern-stack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "eslint",
"install": "cd client && npm install && cd ../server && npm install",
"develop": "concurrently \"npm run server\" \"npm run client\"",
"client": "cd client && npm run dev",
"server": "cd server && npm run watch",
"start": "cd server && npm run start",
"build": "cd client && npm run build",
"heroku-prebuild": "cd client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.0.1",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.4.0",
"react-icons": "^4.8.0"
}
}