package.json 825 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
{
  "name": "today-ku",
  "version": "1.0.0",
  "description": "KU 일정관리 앱",
  "main": "index.js",
Kim, Subin's avatar
Kim, Subin committed
6
  "type": "module",
Kim, Subin's avatar
Kim, Subin committed
7
  "scripts": {
8
    "start": "node server/index.js",
Kim, Subin's avatar
Kim, Subin committed
9
10
    "test": "echo \"Error: no test specified\" && exit 1",
    "dev": "nodemon ./server/index.js"
Kim, Subin's avatar
Kim, Subin committed
11
12
13
14
15
16
17
18
19
20
21
  },
  "repository": {
    "type": "git",
    "url": "https://compmath.korea.ac.kr/gitlab/students/today-ku.git"
  },
  "keywords": [
    "일정관리",
    "학업스케쥴",
    "학사일정"
  ],
  "author": "김수빈, 최가영",
Kim, Subin's avatar
Kim, Subin committed
22
23
24
  "license": "ISC",
  "dependencies": {
    "bcryptjs": "^2.4.3",
Kim, Subin's avatar
Kim, Subin committed
25
    "cookie-parser": "^1.4.5",
Kim, Subin's avatar
Kim, Subin committed
26
27
28
29
30
31
32
33
34
35
    "dotenv": "^10.0.0",
    "express": "^4.17.1",
    "jsonwebtoken": "^8.5.1",
    "pg": "^8.7.1",
    "pg-hstore": "^2.3.4",
    "sequelize": "^6.6.5"
  },
  "devDependencies": {
    "nodemon": "^2.0.13"
  }
Kim, Subin's avatar
Kim, Subin committed
36
}