-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "gitlab-redmine-migrator",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"test": "jest",
"start": "./env/scripts/start.sh",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"_posttest": "npm run check",
"dist": "",
"watch": "tsc -w"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.89.0",
"@types/commander": "^2.12.2",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.21",
"@types/node": "^10.0.3",
"@types/node-redmine": "^0.2.0",
"@types/request": "^2.48.3",
"gts": "^1.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "~3.5.0",
"webpack": "^4.41.2"
},
"dependencies": {
"commander": "^3.0.2",
"express": "^4.17.1",
"gitlab": "^11.4.2",
"node-gitlab-webhook": "^1.0.6",
"node-redmine": "^0.2.1",
"sqlite3": "^4.1.0",
"ts-ddd-common": "git+https://github.com/river0825/ts-ddd-common.git"
}
}