-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "az.dev",
"version": "0.0.1",
"private": true,
"scripts": {
"start-dbs": "docker-compose -f dev-dbs/docker.yml up",
"api-server": "(cd api && nodemon -r esm src/server.js)",
"web-server": "(cd web/src && rimraf .cache dist && parcel index.html)",
"start-blank-dbs": "docker-compose -f dev-dbs/docker-blank.yml up"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"@apollo/link-context": "^2.0.0-beta.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"cross-fetch": "^3.0.6",
"dataloader": "^2.2.2",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.0",
"mongodb": "^3.6.4",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2"
},
"browserslist": [
"> 0.5%, last 2 versions, not dead"
]
}