-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
36 lines (36 loc) · 961 Bytes
/
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
{
"name": "schedule-arranger",
"version": "1.0.0",
"description": "スケジュール管理のアプリケーションです。",
"main": "src/app.js",
"author": "",
"license": "MIT",
"private": true,
"scripts": {
"start": "NODE_ENV=\"development\" node --env-file .env --watch src/server.js",
"test": "jest --setupFiles dotenv/config"
},
"dependencies": {
"@hono/node-server": "1.11.0",
"@hono/oauth-providers": "0.4.0",
"@popperjs/core": "2.11.8",
"@prisma/client": "5.13.0",
"bootstrap": "5.3.3",
"dayjs": "1.11.10",
"hono": "4.2.7",
"iron-session": "8.0.1",
"jquery": "3.7.1"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"babel-loader": "9.1.3",
"css-loader": "6.10.0",
"dotenv": "16.4.5",
"jest": "29.7.0",
"mini-css-extract-plugin": "2.8.0",
"prisma": "5.13.0",
"webpack": "5.90.1",
"webpack-cli": "5.1.4"
}
}