-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@urban-bot/starter-typescript",
"version": "1.0.1",
"description": "Start write chatbots with urban-bot and typescript",
"repository": {
"type": "git",
"url": "https://github.com/urban-bot/urban-bot-starter-typescript.git"
},
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "webpack",
"dev": "nodemon",
"lint": "eslint \"./src\" --ext \".js,.jsx,.ts,.tsx\"",
"lint:fix": "npm run lint -- --fix",
"start": "node dist/index.js",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/node": "^14.14.28",
"@types/react": "^18.0.28",
"@types/jest": "^29.4.0",
"@urban-bot/core": "^1.0.1",
"@urban-bot/facebook": "^1.0.1",
"@urban-bot/slack": "^1.0.1",
"@urban-bot/telegram": "^1.0.1",
"@urban-bot/discord": "^1.0.1",
"dotenv": "^16.0.3",
"file-loader": "^6.2.0",
"react": "^18.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5"
},
"engines": {
"node": ">=14.0.0"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4,
"arrowParens": "always",
"endOfLine": "lf"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,tsx,js,jsx,json",
"exec": "webpack --mode=development && node ./dist/index.js"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "src"
}
}