-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.56 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "juno-chatbot",
"version": "1.0.0",
"description": "chatbot platform interactive audivisual storytelling",
"keywords": [
"chatbot",
"platform",
"interactive",
"audivisual",
"storytelling"
],
"author": "Luciano Frizzera <lucaju@me.com>",
"contributors": [
"Dave Racek <dpracek@yahoo.com>",
"Julia Salles <juliacsalles@yahoo.com.br>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lucaju/junochatbot.git"
},
"bugs": {
"url": "https://github.com/lucaju/junochatbot/issues"
},
"scripts": {
"start": "env-cmd -e production ts-node ./server/index.ts",
"server:dev": "env-cmd -e development nodemon",
"build": "NODE_ENV=production webpack",
"cm": "git-cz"
},
"main": "src/index.tsx",
"homepage": "https://github.com/lucaju/junochatbot#readme",
"dependencies": {
"@dnd-kit/core": "^5.0.3",
"@dnd-kit/modifiers": "^5.0.0",
"@dnd-kit/sortable": "^6.0.1",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@fontsource/roboto": "^4.5.1",
"@mui/icons-material": "^5.0.5",
"@mui/lab": "^5.0.0-alpha.54",
"@mui/material": "^5.0.6",
"axios": "^0.26.1",
"base-64": "^1.0.0",
"chalk": "^4.1.2",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"formik": "^2.2.9",
"framer-motion": "^6.0.0",
"i18next": "^21.3.3",
"i18next-browser-languagedetector": "^6.1.2",
"js-cookie": "^3.0.1",
"luxon": "^2.3.1",
"overmind": "^28.0.1",
"overmind-react": "^29.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.4",
"react-helmet": "^6.1.0",
"react-i18next": "^11.13.0",
"react-infinite-scroll-hook": "^4.0.1",
"react-markdown": "^6.0.3",
"react-player": "^2.9.0",
"react-responsive-masonry": "^2.1.3",
"react-router-dom": "^6.0.1",
"react-use": "^17.3.1",
"url-parse": "^1.5.3",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/runtime": "^7.16.0",
"@babel/runtime-corejs3": "^7.16.0",
"@types/base-64": "^1.0.0",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/express": "^4.17.13",
"@types/js-cookie": "^3.0.0",
"@types/luxon": "^2.3.1",
"@types/react-dom": "^17.0.1",
"@types/react-helmet": "^6.1.4",
"@types/react-router-dom": "^5.3.2",
"@types/url-parse": "^1.4.4",
"@types/uuid": "^8.3.1",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.4",
"copy-webpack-plugin": "^10.0.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.1.1",
"esbuild-loader": "^2.16.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"git-cz": "^4.8.0",
"history": "^5.1.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.3",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"process": "^0.11.10",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.61.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-middleware": "^5.2.1",
"webpack-hot-middleware": "^2.25.1",
"webpackbar": "^5.0.2"
}
}