forked from Comcast/graphvinci
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "@Comcast/GraphVinci",
"version": "1.0.1",
"description": "GraphQL Visualizer",
"source": "index.html",
"scripts": {
"build": "parcel build index.html",
"build_container": "parcel build --dist-dir dockerapp/public index.html",
"start": "parcel serve index.html --open",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Comcast/graphvinci.git"
},
"keywords": [
"graphql",
"visualizer"
],
"author": "Dave Beaumont",
"license": "Apache2",
"dependencies": {
"d3": "^5.16.0",
"graphql": "^15.6.0",
"jso": "^4.1.1",
"monaco-editor": "^0.31.0",
"codemirror": "^5.65.0",
"codemirror-graphql": "^1.2.11",
"markdown-it": "^12.3.2",
"prettier": "^2.5.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@parcel/transformer-image": "^2.0.0",
"jest": "^27.2.1",
"madge": "^5.0.1",
"parcel": "^2.0.0",
"parcel-reporter-static-files-copy": "^1.3.0",
"process": "^0.11.10",
"split.js": "^1.6.4"
},
"staticFiles": {
"staticPath": "images",
"staticOutPath": "images"
},
"jest": {
"verbose": true
}
}