This repository was archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
package.json
File metadata and controls
42 lines (42 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
{
"name": "graphql-workshop",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "concurrently npm:watch:server npm:start:client npm:start:server",
"start:client": "parcel serve --no-autoinstall --no-cache --out-dir dist/client client/index.html",
"start:server": "nodemon dist/server/index.js",
"watch:server": "parcel watch --no-autoinstall --no-cache --out-dir dist/server server/index.ts --target node"
},
"dependencies": {
"@apollo/react-hooks": "3.1.3",
"apollo-boost": "0.4.4",
"apollo-server": "2.9.11",
"graphql": "14.5.8",
"lodash": "4.17.15",
"node-fetch": "2.6.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"tslib": "1.10.0"
},
"devDependencies": {
"@types/lodash": "4.14.149",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.4",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"babel-eslint": "10.0.3",
"concurrently": "5.0.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.7.0",
"eslint-config-vazco": "5.1.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-vazco": "1.0.0",
"nodemon": "2.0.0",
"parcel-bundler": "1.12.4",
"prettier": "1.19.1",
"typescript": "3.7.2"
}
}