forked from cherryontech/acesquad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 908 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
31
32
33
{
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "nodemon server/server.js",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx}\"",
"test": "jest"
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^6.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"tailwindscss": "^0.3.0",
"vite": "^4.1.1"
}
}