-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "ps5-bot",
"version": "1.0.0",
"description": "ps5-bot",
"main": "build/main/index.js",
"repository": "https://github.com/Humberd/ps5-bot",
"license": "MIT",
"keywords": [],
"scripts": {
"start": "node ./build/main/index.js",
"build": "tsc -p tsconfig.json",
"watch:build": "tsc -p tsconfig.json -w"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@bitauth/libauth": "^1.17.1",
"@sendgrid/mail": "^7.4.0",
"@types/log4js": "^2.3.5",
"dotenv": "^8.2.0",
"jsdom": "^16.4.0",
"log4js": "^6.3.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jsdom": "^16.2.5",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true
}
}