-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 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
81
{
"name": "urban-bot-base-example",
"version": "0.1.2",
"description": "Base usage of components and hooks.",
"repository": {
"type": "git",
"url": "https://github.com/ledamint/urban-bot-base-example.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",
"start-tunnel": "ngrok http 8080",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/node": "^14.0.11",
"@types/react": "^16.9.34",
"@types/jest": "^25.2.1",
"@urban-bot/core": "0.1.2",
"@urban-bot/facebook": "0.1.2",
"@urban-bot/slack": "0.1.2",
"@urban-bot/telegram": "0.1.2",
"dotenv": "^8.2.0",
"file-loader": "^6.0.0",
"react": "^16.13.1",
"ts-loader": "^7.0.5",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.4.0",
"ngrok": "^3.2.7",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"ts-jest": "^25.4.0"
},
"engines": {
"node": ">=10.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"
}
}