-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "layoutr",
"version": "1.0.0",
"description": "Graph layout application",
"main": "src/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"serve": "webpack-dev-server --open",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Jeff Baumes (jeff.baumes@kitware.com)",
"license": "MIT",
"homepage": "https://kitware.github.io/layoutr",
"dependencies": {
"babel-runtime": "^6.26.0",
"d3": "^5.9.7",
"geojs": "^0.19.4",
"vue": "^2.6.10",
"vue-markdown": "^2.2.4",
"vuetify": "^2.2.8"
},
"devDependencies": {
"css-loader": "^3.0.0",
"gh-pages": "^2.0.1",
"style-loader": "^1.1.3",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"worker-loader": "^2.0.0"
}
}