-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 894 Bytes
/
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
{
"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"
},
"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"
}
}