-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 882 Bytes
/
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
{
"name": "hades-enterprises",
"version": "1.0.0",
"description": "",
"main": "./src/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"createTables": "ts-node-dev ./src/database/createTables.ts",
"dev": "ts-node-dev --respawn --exit-child ./src/server.ts",
"build": "tsup ./src/server.ts dist/index.js",
"start": "node ./dist/server.js",
"redButton": "ts-node-dev ./src/database/redButton.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.1",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jsonwebtoken": "^9.0.4",
"ts-node-dev": "^2.0.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.2"
}
}