-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
{
"name": "robohouse",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && node server --ignore dist/ --ignore client",
"build": "webpack --mode=production",
"start:dev": "npm run build-watch & npm run start-server",
"start-server": "nodemon server --ignore public",
"build-watch": "webpack -w --mode=development",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "semantic-ui-css-patch && node fomantic-patch.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@godaddy/terminus": "^4.10.2",
"@semantic-ui-react/css-patch": "^1.0.0",
"@slack/bolt": "^3.11.1",
"axios": "^0.27.2",
"babel-loader": "^8.2.5",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.11",
"css-loader": "^6.7.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"file-loader": "^6.2.0",
"fomantic-ui-css": "^2.8.8",
"morgan": "^1.10.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"puppeteer": "^14.1.1",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-adblocker": "^2.12.0",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"sequelize": "^6.20.0",
"slack-block-builder": "^2.5.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"twilio": "^3.77.1",
"url-loader": "^4.1.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"overrides": {
"puppeteer-extra-plugin-adblocker": {
"puppeteer": "^14.1.1"
},
"semantic-ui-react": {
"react": "^18.0.0"
}
}
}