-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "adopt-a-family",
"version": "0.1.0",
"description": "basic routes",
"scripts": {
"build": "tsc && vite build",
"lint:fix": "eslint --fix . && prettier --write .",
"lint": "eslint .; prettier --check .",
"serve": "vite preview",
"server": "nodemon server/app.js",
"start": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5-gwoap/adopt-a-family.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/5-gwoap/adopt-a-family/issues"
},
"homepage": "https://test-aaf.herokuapp.com/",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"mongoose": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0",
"react-test-renderer": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.15.10",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^7.6.0",
"eslint": "^8.34.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",
"eslint-plugin-react-refresh": "^0.3.4",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"superagent": "^8.0.9",
"vite": "^4.2.1",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^0.29.7"
},
"proxy": "http://localhost:3005/"
}