-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.67 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
{
"name": "kojimabot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 web/**/*.html web/**/*.css web/**/*.js web/**/*.jpg web/**/*.png web/**/*.svg web/**/*.woff web/**/*.woff2 dist/web && copyfiles -u 1 katakanaizer/**/*.js dist/katakanaizer && copyfiles -u 1 walkmanizer/**/*.png walkmanizer/**/*.ttf dist/walkmanizer",
"build": "npm run clean && tsc && npm run copy-files",
"web": "npm run build && node dist/web/index.js",
"bot": "npm run build && node dist/bot/index.js",
"dev-web": "ts-node dev/start-dev.ts web",
"dev-bot": "ts-node dev/start-dev.ts bot",
"dev": "ts-node dev/start-dev.ts",
"walkmanizer-test": "ts-node dev/start-dev.ts walkmanizer/test.ts",
"interactive-test": "ts-node helpers/interactiveTest.ts"
},
"keywords": [],
"author": "nununoisy",
"license": "MIT",
"dependencies": {
"@top-gg/sdk": "^3.1.2",
"body-parser": "^1.19.0",
"compromise": "^13.11.4",
"compromise-syllables": "^0.0.6",
"discord.js": "^13.7.0",
"express": "^4.17.1",
"node-fetch": "^2.6.7",
"p-limit": "^3.1.0",
"pg": "^8.7.1",
"spotify-web-api-node": "^5.0.2",
"stringz": "^2.1.0",
"wanakana": "^4.0.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/emscripten": "^1.39.5",
"@types/express": "^4.17.13",
"@types/node-fetch": "^2.5.12",
"@types/pg": "^8.6.1",
"@types/spotify-web-api-node": "^5.0.4",
"@types/wanakana": "^4.0.3",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=16.0.0"
}
}