-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.36 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
82
83
84
85
86
87
88
{
"name": "@urban-bot/starter-javascript",
"version": "0.2.3",
"description": "Start write chatbots with urban-bot and javascript",
"repository": {
"type": "git",
"url": "https://github.com/urban-bot/urban-bot-starter-javascript.git"
},
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "webpack",
"dev": "nodemon",
"lint": "eslint \"./src\" --ext \".js,.jsx\"",
"lint:fix": "npm run lint -- --fix",
"start": "node dist/index.js",
"start-tunnel": "ngrok http 8080",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@urban-bot/core": "^0.2.3",
"@urban-bot/facebook": "^0.2.3",
"@urban-bot/slack": "^0.2.3",
"@urban-bot/telegram": "^0.2.3",
"babel-loader": "^8.2.2",
"dotenv": "^8.2.0",
"file-loader": "^6.2.0",
"react": "^16.14.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"ngrok": "^3.4.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=12.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
],
"@babel/react"
]
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4,
"arrowParens": "always",
"endOfLine": "lf"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "js,jsx,json",
"exec": "webpack --mode=development && node ./dist/index.js"
},
"jest": {
"testEnvironment": "node",
"rootDir": "src"
}
}