-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "gitviz",
"version": "0.0.1",
"description": "Visualizae the evolution of a git repository",
"repository": "https://github.com/kpj/GitViz/",
"main": "index.js",
"scripts": {
"dev": "parcel ./src/index.html",
"build": "parcel build ./src/index.html --public-url /GitViz",
"test": "jest",
"deploy": "npm run test && git worktree add -f dist gh-pages && npm run build && cd ./dist && git add . && git commit -m \"Update gh-pages (ref-commit: $(git log '--format=format:%H' master -1))\" && git push origin gh-pages && cd .. && rm -rf dist"
},
"author": "kpj",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.4.4",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.26.0",
"jest": "^24.8.0",
"parcel-bundler": "^1.12.3",
"tailwindcss": "^1.1.2"
},
"dependencies": {
"@isomorphic-git/lightning-fs": "^3.2.1",
"babel-polyfill": "^6.26.0",
"cytoscape": "^3.6.0",
"cytoscape-cola": "^2.3.0",
"isomorphic-git": "^0.54.2",
"vue": "^2.6.10",
"vuex": "^3.1.1",
"vuex-forms": "0.0.7"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
}
}