-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "world-buff-calendar",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=14.2"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prettier": "prettier --write 'src/**/*.js'",
"prettier-check": "prettier --check 'src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secretbis/world-buff-calendar.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/secretbis/world-buff-calendar/issues"
},
"homepage": "https://github.com/secretbis/world-buff-calendar#readme",
"dependencies": {
"aws-sdk": "^2.668.0",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"googleapis": "^49.0.0",
"icalendar": "^0.7.1",
"moment": "^2.25.3",
"moment-timezone": "^0.5.28",
"uuid": "^8.0.0"
},
"devDependencies": {
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testEnvironment": "jest-environment-node"
}
}