-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.58 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
89
90
91
92
93
94
95
{
"name": "data-analysis-bot",
"version": "1.0.0",
"description": "A bot for Data Analysis",
"repository": "https://github.com/DanieleIsoni/DataAnalysisBot",
"main": "React/main.js",
"scripts": {
"start": "./node_modules/.bin/forever -m 5 Server/src/app.js",
"start:local": "export $(cat .env) && node Server/src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -p --progress --config webpack.config.js",
"dev-build": "webpack --progress -d --config webpack.config.js",
"watch": "webpack --progress -d --config webpack.config.js --watch",
"start:dev": "webpack-dev-server",
"start:ele": "electron .",
"preinstall": "node Server/src/gcpSetup.js"
},
"keywords": [
"fullstack",
"template",
"python",
"react",
"npm",
"webpack"
],
"contributors": [
"Daniele Isoni",
"Simone Bernabè"
],
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"dotenv": "^8.0.0",
"electron": "^11.5.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"uuid": "^3.2.1",
"webpack": "^4.8.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.7.1"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"console-stamp": "^0.2.6",
"cors": "^2.8.4",
"css-loader": "^0.28.11",
"dialogflow": "^0.3.0",
"electron-default-menu": "^1.0.1",
"express": "^4.16.3",
"express-fileupload": "^0.4.0",
"express-session": "^1.15.6",
"forever": "^0.15.3",
"fs": "0.0.1-security",
"heroku-ssl-redirect": "0.0.4",
"js-file-download": "^0.4.1",
"node-telegram-bot-api": "^0.30.0",
"node-uuid": "^1.4.8",
"npm": "^6.9.0",
"papaparse": "^4.5.0",
"python-shell": "^0.5.0",
"react-autocomplete": "^1.8.1",
"react-bootstrap-table": "^4.3.1",
"react-localize-redux": "^3.0.2",
"react-scroll": "^1.7.9",
"react-syntax-highlighter": "^7.0.4",
"react-transition-group": "^1.2.1",
"reactstrap": "^6.0.1",
"redux-undo": "^1.0.0-beta9-9-7",
"request": "^2.88.0",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"ts-react-json-table": "^0.1.1"
},
"engines": {
"node": "8.11.4",
"npm": "6.9.0"
}
}