-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "neko-channel-line-bot",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"main": "index.js",
"scripts": {
"coverage": "jest --coverage --coverageReporters='json-summary'",
"dev": "nodemon",
"postinstall": "husky install",
"lint": "eslint src/** --fix",
"pre-commit": "lint-staged",
"prepare": "husky install",
"start": "ts-node -r tsconfig-paths/register ./src/index.ts",
"test": "jest",
"build": "rollup -c rollup.config.js"
},
"dependencies": {
"@line/bot-sdk": "^7.3.0",
"apollo-server-express": "^3.0.1",
"axios": "^0.21.2",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"express-graphql": "^0.12.0",
"graphql": "^15.5.1",
"image-size": "^1.0.0",
"moment": "^2.29.4",
"mongoose": "^6.11.3",
"openai": "^3.2.1",
"prompts": "^2.4.1",
"puppeteer": "^19.2.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.12.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.11.18",
"@types/puppeteer": "^5.4.4",
"@types/stack-utils": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.4",
"typescript": "^4.9.3"
}
}