-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "todo",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/main",
"compose": "docker-compose down && docker-compose up --build --force-recreate",
"build": "tsc",
"test": "npm run lint && jest",
"lint": "tslint -p tsconfig.json 'src/**/*.ts'"
},
"keywords": [
"todo",
"example"
],
"author": "seunggu <[email protected]>",
"license": "MIT",
"dependencies": {
"@modusign/ddd": "^0.2.9",
"@nestjs/common": "^6.3.1",
"@nestjs/core": "^6.3.1",
"@nestjs/passport": "^6.1.0",
"@nestjs/platform-express": "^6.3.1",
"@nestjs/typeorm": "^6.1.2",
"axios": "^0.19.0",
"caver-js": "^1.0.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"dotenv": "^8.0.0",
"dotenv-safe": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.17.1",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"rxjs": "^6.5.2",
"typeorm": "^0.2.18",
"uuid": "^3.3.2"
},
"devDependencies": {
"@nestjs/testing": "^6.3.1",
"@types/jest": "^24.0.13",
"@types/uuid": "^3.4.4",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.1"
}
}