This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
56
57
58
59
60
{
"name": "vocabot",
"version": "1.1.1",
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"clear": "rm -rf dist && rm -rf lib",
"build": "npm run clear && npm run build:ts && npm run build:js",
"build:ts": "tsc",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"watch:ts": "tsc -w",
"watch:node": "nodemon dist/index.js",
"watch": "npm run build && concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch:ts\" \"npm run watch:node\"",
"start": "npm run build && node dist/index.js"
},
"_moduleAliases": {
"@app": "dist/app",
"@root": "dist/",
"@config": "dist/config/config.json",
"@logger": "dist/logger.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/app-root-path": "^1.2.4",
"@types/lodash": "^4.14.139",
"@types/node": "^12.7.8",
"@types/pino": "^5.8.10",
"@types/yargs": "^13.0.3",
"concurrently": "^4.1.2",
"module-alias": "^2.2.2",
"nodemon": "^1.19.2",
"pino-pretty": "^3.2.1",
"typescript": "^3.6"
},
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/voca": "^1.4.0",
"app-root-path": "^2.2.1",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"discord-akairo": "^7.5",
"discord.js": "^11.5.1",
"dotenv": "^8.1.0",
"kayn": "^0.10.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"pino": "^5.13.3",
"sequelize": "^5.19.1",
"sqlite": "^3.0.3",
"voca": "^1.4.0",
"yargs": "^14.0.0"
}
}