-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "pokefun",
"description": "",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"start": "node dist",
"test": "npm run lint",
"build": "tsc",
"lint": "eslint src/*",
"lint:fix": "eslint src/* --fix",
"prettier": "prettier --write src/**/*.js src/**/*.ts",
"prepare": "is-ci || husky install",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JTTechnic/PokeFun.git"
},
"keywords": [],
"author": "Jaron Zijlstra",
"license": "ISC",
"bugs": {
"url": "https://github.com/JTTechnic/PokeFun/issues"
},
"homepage": "https://github.com/JTTechnic/PokeFun#readme",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"common-tags": "^1.8.0",
"discord-api-types": "^0.23.1",
"discord-extend": "github:discordextend/discord-extend",
"discord-oversimplified": "github:discordextend/discord-oversimplified",
"discord.js": "^13.2.0",
"dotenv": "^10.0.0",
"pokedex-typed": "github:JTTechnic/pokedex-typed"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-angular": "^13.2.0",
"@types/common-tags": "^1.8.1",
"@types/node": "^16.10.2",
"@typescript-eslint/parser": "^4.32.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}