forked from syntithenai/opennludata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·124 lines (124 loc) · 3.57 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
{
"name": "opennludata",
"version": "0.1.0",
"private": true,
"dependencies": {
"@google-cloud/speech": "^4.1.3",
"@metamodules/postgres": "^1.2.1",
"ace-builds": "^1.4.12",
"acorn": "^8.0.4",
"axios": "^0.20.0",
"balanced-match": "^1.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"brace": "^0.11.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"deepspeech": "^0.9.1",
"deploy-node-app": "^1.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"express-oauth-login-system-server": "^1.0.3",
"express-restify-mongoose": "^6.1.2",
"express-session": "^1.17.1",
"file-saver": "^2.0.2",
"git-commit-push-via-github-api": "^1.0.2",
"hark": "^1.2.3",
"http": "0.0.1-security",
"https": "^1.0.0",
"ibm-watson": "^5.7.1",
"install": "^0.13.0",
"js-yaml": "^3.14.0",
"jsoneditor": "^9.0.5",
"jsoneditor-react": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.5.0",
"localforage": "^1.9.0",
"localforage-getitems": "^1.4.2",
"md5": "^2.3.0",
"method-override": "^3.0.0",
"mongodb-client-encryption": "^1.1.0",
"mongoose": "^5.10.5",
"node-vad": "^1.1.4",
"npm": "^6.14.9",
"parenthesis": "^3.1.7",
"pure-svg-code": "^1.0.6",
"react": "^16.14.0",
"react-ace": "6.3.2",
"react-autosuggest": "^10.0.2",
"react-bootstrap": "^1.3.0",
"react-bootstrap-autosuggest": "^0.5.0",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.14.0",
"react-express-oauth-login-system-components": "file:../react-express-oauth-login-system-components",
"react-file-reader-input": "^2.0.0",
"react-ga": "^3.1.2",
"react-github-button": "^0.1.11",
"react-h5-audio-player": "^3.4.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.0.1",
"react-sizeme": "^2.6.12",
"react-tag-autocomplete": "^6.1.0",
"react-window": "^1.8.5",
"react-youtube": "^7.13.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^1.2.1",
"video-react": "^0.14.1",
"voicedialogjs": "file:../voicedialogjs",
"websocket": "^1.0.32",
"webworkify": "^1.5.0",
"webworkify-webpack": "^2.1.5"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.19.1",
"babel-eslint": "10.0.1",
"cross-spawn": "^6.0.5",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"prettier": "^1.17.1"
},
"scripts": {
"start": "bash bin/dev.sh",
"build": "react-scripts build",
"deploy": "deploy-node-app",
"test": "react-scripts test",
"eject-www": "react-scripts eject",
"psql": "export $(cat .env | xargs) && PGPASSWORD=${POSTGRES_PASSWORD} psql -h ${POSTGRES_SERVICE_HOST} -p ${POSTGRES_SERVICE_PORT} -U ${POSTGRES_USER} ${POSTGRES_DB}"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"deploy-node-app": {
"prod": {
"port": 5000,
"protocol": "http",
"entrypoint": "src/api/index.js",
"type": "spa"
},
"dev": {
"port": 5000,
"protocol": "http",
"entrypoint": "src/api/index.js",
"registry": "",
"type": "spa",
"isPublic": false
}
},
"proxy": "http://localhost:5000"
}