-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.45 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
65
66
67
68
69
70
71
72
{
"name": "study",
"version": "1.0.0",
"description": "프로그라피 6기 nodejs 스터디 레포입니다. 이 스터디는 `Typescript`와 `express`를 활용한 서버 애플리케이션 제작을 목표로 하는 서버 기초 스터디입니다. node 버젼은 최신LTS인 12(작성일 기준 12.16.1)로 합니다. 컴퓨터에 없으다면 미리 준비해오기 바랍니다. 설치 방법은 각 OS별로 다르니 확인후에 설치하면 됩니다.([nodejs 공홈](https://nodejs.org/ko/)) 에디터는 국룰 [VSCODE](https://code.visualstudio.com/)를 기준으로 진행합니다.(코드 포맷 자동완성)",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "npm run prisma:generate && node ./dist",
"dev": "npm run prisma:migrate && npm run prisma:generate && nodemon",
"prisma:generate": "prisma2 generate",
"prisma:migrate": "prisma2 migrate up --experimental"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prography/6th-nodejs-study.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prography/6th-nodejs-study/issues"
},
"homepage": "https://github.com/prography/6th-nodejs-study#readme",
"nodemonConfig": {
"watch": [
"src/*"
],
"ext": "ts",
"ignore": [
"**/*.spec.ts",
".env"
],
"exec": "ts-node ./src"
},
"devDependencies": {
"@prisma/cli": "^2.0.0-beta.4",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jest": "^24.0.23",
"@types/lowdb": "^1.0.9",
"@types/node": "^13.13.5",
"@types/supertest": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"gts": "^1.1.2",
"jest": "^24.9.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@prisma/client": "^2.0.0-beta.4",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"prisma": "^1.34.10",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.1",
"supertest": "^4.0.2"
}
}