-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dialogue",
"version": "0.1.0",
"description": "Example of Clean Architecture, SOLID, IOC, with Typescript",
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/dotenv": "^6.1.0",
"@types/fastify-multipart": "^0.5.0",
"@types/joi": "^14.0.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.5",
"@types/moment-timezone": "^0.5.10",
"@types/mongoose": "^5.3.20",
"@types/node": "^10.12.18",
"@types/qs": "^6.5.1",
"@types/sinon": "^7.0.2",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"nock": "^10.0.4",
"prettier": "1.15.3",
"sinon": "^7.2.2",
"ts-mock-imports": "^1.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"cerialize": "^0.1.18",
"commander": "^2.19.0",
"crypto": "^1.0.1",
"dotenv": "^6.2.0",
"emittery": "^0.4.1",
"fastify": "^1.13.2",
"fastify-compress": "^0.7.1",
"inversify": "^5.0.1",
"joi": "^14.3.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"mongoose": "^5.4.17",
"qs": "^6.6.0",
"reflect-metadata": "^0.1.12",
"tslint-config-prettier": "^1.17.0",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"scripts": {
"start": "pm2-docker start process.json",
"test": "mocha -C -r ts-node/register test/**/*.spec.ts",
"tslint": "npx tslint --project ./",
"build:dev": "tsc --watch",
"build:prod": "tsc"
},
"author": "Stanley Yoshinori Takamatsu",
"license": "MIT"
}