-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 KB
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
{
"name": "vite-apollo-mongo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js --ignore client",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm run dev\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build",
"lint": "eslint . --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbohde/vite-apollo-mongo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jbohde/vite-apollo-mongo/issues"
},
"homepage": "https://github.com/jbohde/vite-apollo-mongo#readme",
"devDependencies": {
"concurrently": "^8.2.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.2"
},
"dependencies": {
"@apollo/client": "^3.8.1",
"bootstrap": "^5.3.1",
"cloudinary": "^1.40.0",
"graphql": "^16.8.0",
"graphql-upload": "^16.0.2",
"html-react-parser": "^4.2.1",
"react-bootstrap": "^2.8.0",
"react-icons": "^4.10.1"
}
}