-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
{
"name": "rchan4",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"axios": "^1.3.5",
"config": "^3.3.9",
"discord.js": "^14.9.0",
"express": "^4.18.2"
},
"devDependencies": {
"@types/config": "^0.0.34",
"@types/node": "16",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "^5.0.4"
},
"scripts": {
"start": "node build/js/index.js",
"devstart": "ts-node --files src/js/index.ts",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint src/**/*.ts",
"docker:build": "docker buildx build . --platform linux/amd64,linux/arm64/v8 -t pasta04/rchan4:latest",
"docker:push": "docker buildx build . --platform linux/amd64,linux/arm64/v8 -t pasta04/rchan4:latest --push",
"docker:start": "docker-compose up -d",
"docker:bash": "docker exec -i -t rchan4 bash"
},
"license": "MIT"
}