-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.26 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
43
44
45
46
47
{
"name": "git-vis",
"version": "0.1.8",
"description": "",
"main": "app.js",
"bin": {
"git-vis": "dist/app.js"
},
"scripts": {
"copy-views": "copyfiles -u 1 ./src/views/* ./src/views/**/* ./dist",
"copy-css": "copyfiles -u 1 ./client/css/* ./public",
"copy-files": "npm run copy-views && npm run copy-css",
"cleanup": "rimraf ./dist ./public/js",
"build": "npm run cleanup && tsc --build && npm run copy-files",
"start": "npm run build && node dist/app.js",
"start:dev": "nodemon",
"pub": "npm run build && npm publish"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ericArbour/git-vis.git"
},
"devDependencies": {
"@hotwired/turbo": "^7.0.0-beta.5",
"@types/express": "^4.17.11",
"@types/express-handlebars": "^3.1.0",
"@types/node": "^14.14.37",
"@types/nodegit": "^0.27.0",
"@types/yargs": "^17.0.0",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"stimulus": "^2.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"chokidar": "^3.5.1",
"express": "^4.17.1",
"express-handlebars": "^5.3.0",
"nodegit": "^0.27.0",
"yargs": "^16.2.0"
}
}