forked from toshi0010/p2phelper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 KB
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
{
"name": "corn2p",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --clear --transpile-only --ignore-watch node_modules -r dotenv/config ./src/index.ts dotenv_config_path=.env",
"build": "rm -rf ./dist && tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"start": "node -r dotenv/config dist/index.js dotenv_config_path=.env",
"prepare": "husky"
},
"author": "toshi",
"license": "MIT",
"dependencies": {
"axios": "1.12.2",
"crypto-js": "4.2.0",
"dayjs": "1.11.10",
"discord.js": "14.15.3",
"dotenv": "16.4.5",
"graphql": "16.8.1",
"graphql-tag": "2.12.6",
"if-logger": "0.12.5",
"mingutils": "0.8.0",
"node-telegram-bot-api": "0.66.0",
"qrcode": "^1.5.4",
"ramda": "0.30.1",
"uuid": "10.0.0",
"ws": "8.17.1"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.14.2",
"@types/node-telegram-bot-api": "0.64.6",
"@types/supertest": "6.0.2",
"@types/ws": "8.5.10",
"husky": "9.1.7",
"jest": "29.7.0",
"supertest": "7.0.0",
"ts-jest": "29.1.4",
"ts-node-dev": "2.0.0",
"typescript": "5.4.5"
},
"nodemonConfig": {
"ignore": [
"db.json",
"db-dev.json",
"**/test/**",
"**/docs/**"
],
"delay": 2500
}
}