-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "biblibot",
"description": "A discord bot for my literature club.",
"module": "src",
"author": {
"email": "rihor1000@gmail.com",
"name": "Pedro Pinho",
"url": "https://github.com/rihor"
},
"version": "2.0.0",
"main": "src",
"license": "MIT",
"lint-staged": {
"*.ts": [
"eslint --fix --ext .ts"
]
},
"scripts": {
"dev": "tsnd src",
"build": "rimraf build/ && babel src --extensions \".js,.ts\" --out-dir build --copy-files",
"start": "node build/index.js",
"commit": "cz",
"postinstall": "husky install",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/node": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@types/cron": "^1.7.2",
"@types/google-spreadsheet": "^3.0.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"commitizen": "^4.2.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^5.1.1",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^1.19.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"ts-node": "3.3.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"cron": "^1.8.2",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"google-spreadsheet": "^3.1.15"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}