-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "een",
"version": "0.0.1",
"main": "dist/index.js",
"repository": "https://github.com/Hyperclap-Studios/uno",
"author": "Hyperclap Studios",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"postinstall": "tsc",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"gen:key": "node -e \"console.log(require('crypto').randomBytes(256).toString('base64'));\""
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"socket.io": "^4.2.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.1",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/socket.io": "^3.0.2",
"nodemon": "^2.0.13",
"ts-node": "^10.2.1",
"tsc": "^2.0.3",
"typescript": "^4.4.3"
},
"engines": {
"node": "14.17.3",
"npm": "6.14.13",
"yarn": "1.22.10"
}
}