This repository has been archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.97 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
{
"name": "travel-together-api-server",
"version": "1.0.0",
"description": "같이 쓰는 여행 일정으로 가치 있는 여행을! 모바일 애플리케이션 가치여행 API 서버",
"main": "index.js",
"dependencies": {
"@nestjs/common": "^6.9.0",
"@nestjs/core": "^6.9.0",
"@nestjs/platform-express": "^6.9.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.0.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"rxjs": "^6.5.3",
"sequelize": "^5.21.2",
"sequelize-typescript": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/chai-as-promised": "^7.1.2",
"@types/eslint": "^6.1.3",
"@types/express": "^4.17.1",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.5",
"@types/mocha": "^5.2.7",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.44",
"@types/sequelize": "^4.28.6",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"concurrently": "^5.0.0",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'node_modules/.bin/ts-node' src/main.ts",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "mocha -r ts-node/register tests/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamot/travel-together-api-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/teamot/travel-together-api-server/issues"
},
"homepage": "https://github.com/teamot/travel-together-api-server#readme"
}