-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.65 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": "lamp_dashboard",
"version": "1.0.0",
"author": "BIDMC Division of Digital Psychiatry",
"description": "LAMP Dashboard",
"private": true,
"homepage": ".",
"devDependencies": {
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/node-logger": "^6.1.11",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.11",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-is": "^16.7.1",
"@types/react-router-dom": "^4.3.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chromatic": "^5.5.0",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "2.0.4",
"react-scripts": "^3.4.3",
"typescript": "3.8"
},
"dependencies": {
"@data-ui/radial-chart": "0.0.80",
"@data-ui/sparkline": "0.0.79",
"@data-ui/xy-chart": "0.0.79",
"@date-io/date-fns": "^1.3.11",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.48",
"@material-ui/pickers": "^3.2.8",
"@material-ui/styles": "^4.3.0",
"@vx/legend": "0.0.190",
"core-js": "^3.6.5",
"file-saver": "^1.3.8",
"i18next": "^19.8.3",
"i18next-http-backend": "^1.0.21",
"javascript-time-ago": "^2.0.4",
"jsonexport": "^2.4.1",
"jszip": "^3.3.0",
"lamp-core": "^1.0.8",
"material-icons": "^0.3.1",
"material-table": "^1.42.0",
"notistack": "^0.9.9",
"qrcode.react": "^1.0.0",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.0.0",
"react-circular-progressbar": "^2.0.3",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.8",
"react-error-boundary": "^3.1.0",
"react-i18next": "^11.7.3",
"react-images-upload": "^1.2.8",
"react-is": "^16.12.0",
"react-jss": "^8.6.1",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.0.1",
"react-vega": "^7.4.1",
"regenerator-runtime": "^0.13.3",
"remark-emoji": "^2.1.0",
"remark-gfm": "^1.0.0",
"stacktrace-js": "^2.0.2",
"url-search-params-polyfill": "^7.0.0",
"vega": "^5.17.0",
"vega-lite": "^4.17.0"
},
"scripts": {
"start": "BROWSER=none NODE_ENV=production REACT_APP_GIT_NUM=`git rev-list --count HEAD` REACT_APP_GIT_SHA=`git rev-parse --short HEAD` react-scripts start",
"start-sw": "http-server -p 3000 ./build",
"test": "echo \"no tests configured\"",
"build": "NODE_ENV=production CI=false REACT_APP_GIT_NUM=`git rev-list --count HEAD` REACT_APP_GIT_SHA=`git rev-parse --short HEAD` react-scripts build",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss}'",
"storybook": "start-storybook -p 3000 -s public",
"build-storybook": "build-storybook -s public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss}": [
"prettier --write"
]
},
"prettier": {
"semi": false,
"printWidth": 120
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"react-app",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier/@typescript-eslint"
],
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"react-hooks/exhaustive-deps": "off"
}
}
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}