-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 loc) · 1.61 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
53
54
55
{
"name": "yakumo-ran",
"version": "1.4.2",
"description": "iirose bot",
"main": "dist/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev ts-node . -r ts-node/register",
"start": "cross-env NODE_ENV=production node ./dist/index.js",
"build": "cross-env NODE_ENV=production tsc && node ./tools/after-build.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles --forceExit"
},
"author": "iirose-tools",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@types/jest": "^26.0.23",
"@types/locks": "^0.2.1",
"@types/md5": "^2.3.0",
"@types/node": "^14.14.41",
"@types/node-cron": "^2.0.4",
"@types/request": "^2.48.5",
"@types/sha1": "^1.1.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-jest": "^26.6.3",
"eslint": "7.12.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"ts-node": "^9.1.1"
},
"dependencies": {
"@types/pako": "^1.0.1",
"@types/ws": "^7.4.0",
"axios": "^0.26.1",
"cross-env": "^7.0.3",
"html-entities": "^2.3.2",
"log4js": "^6.3.0",
"md5": "^2.3.0",
"music-metadata": "^7.7.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"pako": "^2.0.3",
"request": "^2.88.2",
"sha1": "^1.1.1",
"typescript": "^4.2.4",
"ws": "^7.4.3"
}
}