-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"devDependencies": {
"@google/clasp": "^2.4.2",
"@types/express": "^4.17.15",
"@types/google-apps-script": "^1.0.56",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"copy-webpack-plugin": "^11.0.0",
"discord.js": "^14.7.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"gas-webpack-plugin": "^2.3.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"dev": "ts-node server/index.ts",
"dev:watch": "ts-node-dev server/index.ts",
"deploy": "webpack && clasp push",
"prepare": "husky install",
"lint-staged": "lint-staged",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@discordjs/collection": "^1.3.0",
"express": "^4.18.2",
"fuse.js": "^6.6.2"
}
}