-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·88 lines (88 loc) · 3.04 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": "bento_public",
"version": "0.22.0",
"description": "A publicly accessible portal for clinical datasets, where users are able to see high-level statistics of the data available through predefined variables of interest and search the data using limited variables at a time. This portal allows users to gain a generic understanding of the data available (secure and firewalled) without the need to access it directly. Initially, this portal facilitates the search in English language only, but the French language will be added at a later time.",
"main": "index.js",
"scripts": {
"build": "npx webpack --mode=production",
"build-dev": "npx webpack --mode=development",
"watch": "npx webpack --mode=development --watch",
"start": "webpack serve --mode development --no-web-socket-server",
"lint": "npx eslint src/js",
"lint-fix": "npx eslint --fix src/js",
"prettier": "npx prettier --write src/js",
"yalc": "npx yalc update --store-folder /packs/yalc/"
},
"keywords": [],
"author": "",
"license": "LGPL-3.0-only",
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@reduxjs/toolkit": "^1.9.7",
"antd": "^5.22.2",
"axios": "^1.7.7",
"bento-auth-js": "^7.0.0",
"bento-charts": "^2.12.0",
"dotenv": "^16.3.1",
"i18next": "^23.16.8",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.7.1",
"leaflet": "^1.9.4",
"less": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.1.1",
"react-icons": "^5.0.1",
"react-leaflet": "^4.2.1",
"react-redux": "^8.1.3",
"react-router-dom": "^6.28.0",
"recharts": "^2.13.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@webpack-cli/serve": "^2.0.4",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"less-loader": "~12.2.0",
"prettier": "^3.1.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "~5.5.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.0.0",
"webpack-dev-server": "^5.1.0",
"yalc": "^1.0.0-pre.53"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bento-platform/bento_public.git"
},
"bugs": {
"url": "https://github.com/bento-platform/bento_public/issues"
},
"homepage": "https://github.com/bento-platform/bento_public#readme",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
}
}