-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "vkplay-points",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node src/main.ts",
"start": "rimraf ./build && tsc -p . && ts-node build/main.js",
"start:prod": "node build/main.js",
"build": "tsc -p .",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.5.9",
"@types/sqlite3": "^3.1.8",
"@types/websocket": "^1.0.6",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/tough-cookie": "^4.0.2",
"axios": "^1.5.0",
"axios-cookiejar-support": "^4.0.7",
"class-transformer": "^0.5.1",
"dotenv": "^16.3.1",
"joi": "^17.10.2",
"jsonwebtoken": "^9.0.2",
"kleur": "^4.1.5",
"sqlite3": "^5.1.6",
"tough-cookie": "^4.1.3",
"ts-node": "^10.9.1",
"typeorm": "^0.3.17",
"websocket": "^1.0.34"
}
}