-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.01 KB
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
{
"name": "tastylog",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"prebuild": "rimraf ./dist/**/*",
"build": "pkg ."
},
"author": "Ayato Saito",
"license": "MIT",
"devDependencies": {
"eslint": "^7.25.0",
"pkg": "^5.3.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"@garafu/mysql-fileloader": "^0.0.3",
"bcrypt": "^5.0.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"csrf": "^3.1.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-mysql-session": "^2.1.6",
"express-session": "^1.17.1",
"http-graceful-shutdown": "^3.1.2",
"log4js": "^6.3.0",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"round-to": "^5.0.0",
"serve-favicon": "^2.5.0"
},
"bin": "./app.js",
"pkg": {
"assets": [
"./views/**/*/.ejs",
"./lib/**/*.sql",
"./public/**/*"
],
"targets": [
"node16-macos"
],
"outputPath": "./dist"
}
}