-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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": "@chillandchat/api",
"version": "1.11.5",
"main": "./build/js/index.js",
"bin": "./build/js/index.js",
"author": "Alvin cheng <[email protected]>",
"license": "MIT",
"module": "module",
"scripts": {
"start": "echo 'Starting app...' && ts-node ./src/index.ts",
"create-bin": "echo 'Building binary files...' && pkg . && echo 'Done!'",
"build": "tsc && echo 'Building and compiling typescript code...\n' && echo 'Done.\n'",
"format": "echo 'Formatting code...' && prettier --write . && echo 'Done!'"
},
"repository": {
"type": "git",
"url": "https://github.com/chillandchat/api.git"
},
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"expo-server-sdk": "^3.7.0",
"express": "^4.17.1",
"express-rate-limit": "^6.3.0",
"file-type": "^16.5.3",
"heic-convert": "^1.2.4",
"mongoose": "^6.7.11",
"node-fetch": "2.6.7",
"nodemailer": "^6.7.3",
"randomcolor": "^0.6.2",
"sanitize-filename": "^1.6.3",
"sharp": "^0.31.2",
"socket.io": "^4.4.1",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^6.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.4",
"@types/socket.io": "^3.0.2",
"nodemon": "^2.0.15",
"typescript": "^4.5.5"
},
"private": false,
"pkg": {
"scripts": "build/js/**/*.js",
"assets": "src/endpoints/static/**/*",
"targets": [
"node16-macos",
"node16-linux",
"node16-windows"
],
"outputPath": "build/exe"
}
}