-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "headpat",
"version": "1.0.0",
"description": "A Discord clone learning project",
"main": "dist/index.js",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@types/speakeasy": "^2.0.10",
"@types/ws": "^8.5.10",
"shx": "^0.3.4",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc --build && npm run copyhtml && npm run copysecrets",
"copyhtml": "shx cp -r ./src/html/pages ./src/html/scripts ./src/html/styles ./src/html/assets ./dist/html",
"copysecrets": "shx cp .env ./dist",
"buildrun": "npm run build && npm run run",
"run": "cd dist && node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ten",
"license": "ISC",
"dependencies": {
"@keyv/sqlite": "^3.6.7",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"honeycrisp": "^1.0.7",
"imgur-anonymous-uploader": "^1.1.6",
"jimp": "^0.22.12",
"jose": "^5.2.0",
"keyv": "^4.5.4",
"qrcode": "^1.5.3",
"speakeasy": "^2.0.0",
"ws": "^8.16.0"
}
}