-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "prography-6th-team4-node",
"version": "1.0.0",
"description": "프로그라피 6기 - 'USO'앱을 개발하는 4팀의 TypeScript와 Express를 이용한 Node.js 백엔드 서버",
"main": "index.js",
"scripts": {
"start": "npx tsc && node dist/src/App.js",
"test": "jest",
"dev": "nodemon --watch src/ src/App.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^2.0.0-beta.3",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.1",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.1",
"supertest": "^4.0.2"
},
"devDependencies": {
"@prisma/cli": "^2.0.0-beta.3",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.4.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}