-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "it-depends",
"version": "1.0.0",
"description": "a tool for visualizing entity dependencies which cross-cut commit history",
"main": "index.js",
"repository": "git@github.com:jyoo980/it-depends.git",
"author": "OOPs I did it Again",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc src/**/*.ts test/**/*.ts",
"test": "yarn build && mocha --require ts-node/register test/*.ts test/**/*.ts",
"start": "node src/rest/server.js"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.12",
"@types/fs-extra": "^9.0.1",
"@types/jszip": "^3.4.1",
"@types/lodash": "^4.14.159",
"@types/mocha": "^8.0.1",
"@types/restify": "^8.4.1",
"@types/typescript": "^2.0.0",
"axios": "^0.21.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"fp-ts": "^2.8.1",
"fs-extra": "^9.0.1",
"jszip": "^3.5.0",
"lodash": "^4.17.21",
"mocha": "^8.1.1",
"restify": "^8.4.0",
"restify-cors-middleware": "^1.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}