-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 935 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 935 Bytes
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
{
"name": "github-webhook-listener",
"scripts": {
"dev": "npm run server",
"prod": "npm run build && npm run server:prod",
"build": "dotenv vite build && vite build --ssr",
"server": "dotenv node server",
"server:prod": "dotenv -v NODE_ENV=production node server"
},
"dependencies": {
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "^3.2.31",
"@vue/server-renderer": "^3.2.31",
"autoprefixer": "^10.4.2",
"axios": "^0.26.0",
"body-parser": "^1.19.2",
"compression": "^1.7.4",
"debug": "^4.3.3",
"dotenv-cli": "^5.0.0",
"express": "^4.17.2",
"express-basic-auth": "^1.2.1",
"fson-db": "^1.3.2",
"moment": "^2.29.1",
"postcss": "^8.4.6",
"sass": "^1.49.8",
"shelljs": "^0.8.5",
"tailwindcss": "^3.0.23",
"vite": "^2.8.1",
"vite-plugin-ssr": "^0.3.56",
"vue": "^3.2.31"
}
}