-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "hc2-back",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "npx nodemon",
"start:clean": "rimraf ./build && tsc",
"start:prod": "npm run start:clean && node build/index.js",
"start:build": "tsc"
},
"author": "ms0ur",
"license": "MIT",
"dependencies": {
"@types/node": "^20.4.5",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"canvas": "^2.11.2",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"markdown-it": "^13.0.1",
"markdown-it-multimd-table": "^4.2.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.5.2",
"rcon-client": "^4.2.3",
"rimraf": "^5.0.1",
"sharp": "^0.32.4",
"ts-md5": "^1.3.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/markdown-it": "^12.2.3",
"@types/multer": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"prettier": "3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}