-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.95 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
{
"name": "spacecruiser",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx dotenv -e .env.development -- ts-node src/index.ts",
"dev:watch": "npx dotenv -e .env.development -- ts-node-dev --respawn src/index.ts",
"clean": "rimraf dist/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"start": "node .",
"delete-commands:dev": "npx dotenv -e .env.development node src/delete-all-commands.js",
"delete-commands:prod": "npx dotenv -e .env.production node src/delete-all-commands.js",
"deploy-commands:dev": "npx dotenv -e .env.development -- ts-node src/index.ts --deploy-commands",
"deploy-commands:prod": "npx dotenv -e .env.production -- ts-node src/index.ts --deploy-commands",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.20.55",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^6.0.0",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@notionhq/client": "^2.2.5",
"@sota1235/notion-sdk-js-helper": "^1.0.0",
"discord.js": "^14.11.0",
"discordx": "^11.7.6",
"dotenv": "^16.1.4",
"yargs": "^17.7.2"
}
}