-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "wafter",
"version": "1.20.0",
"description": "Mirai's Backend",
"main": "src/index.js",
"bin": "src/index.js",
"scripts": {
"compile": "ncc build src/index.js -m -o build/",
"build": "npm run compile && loose-envify build/index.js | terser -c -o build/wafter.js",
"start": "node src/index.js --unhandled-rejections=strict",
"test": "mocha",
"dev": "nodemon src/index.js",
"pkg": "cd build/ && nexe -i wafter.js -r \"public/**/*\" -o ../dist/wafter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vnma0/wafter.git"
},
"author": "vnma0",
"license": "MIT",
"bugs": {
"url": "https://github.com/vnma0/wafter/issues"
},
"homepage": "https://github.com/vnma0/wafter#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.0.0",
"dotenv": "^10.0.0",
"enquirer": "^2.3.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-static-gzip": "^2.1.1",
"filenamify": "^4.3.0",
"helmet": "^3.22.0",
"ip": "^1.1.5",
"isbinaryfile": "^4.0.8",
"memorystore": "^1.6.6",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"neat-csv": "^6.0.1",
"nedb": "^1.8.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"rate-limiter-flexible": "^2.2.2",
"uuid": "^8.3.2",
"ws": "^7.4.6"
},
"devDependencies": {
"@vercel/ncc": "^0.28.6",
"eslint": "^7.27.0",
"loose-envify": "^1.4.0",
"mocha": "^8.4.0",
"nexe": "^3.3.7",
"nodemon": "^2.0.7",
"terser": "^5.7.0"
}
}