forked from virusseq/portal-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.5 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
{
"name": "virusseq-dataportal-ui",
"version": "1.14.0",
"private": true,
"scripts": {
"clearNextTemp": "rm -rf ./.next",
"build": "npm run clearNextTemp && next build",
"dev": "npm run clearNextTemp && next dev",
"lint": "eslint --ext .ts,.tsx '.' --fix",
"start": "next start",
"test": "npm run build && jest",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"prepare": "husky install"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^11.10.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@overture-stack/arranger-components": "^3.0.0-beta.33",
"@overture-stack/sqon-builder": "^0.0.0",
"antd": "^5.4.7",
"axios": "^0.27.2",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"dayjs": "^1.11.11",
"eslint-plugin-react-hooks": "^4.6.0",
"highcharts": "^9.0.1",
"highcharts-react-official": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"next": "^12.2.2",
"next-global-css": "^1.3.1",
"next-transpile-modules": "^9.0.0",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-datepicker": "^4.8.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.2",
"react-ga": "^3.3.1",
"react-grid-system": "^7.1.2",
"react-hot-toast": "^2.4.1",
"react-table": "^7.8.0",
"react-tippy": "^1.4.0",
"url-join": "^4.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/eslint-plugin": "^11.10.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/react": "^17.0.47",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^17.0.17",
"@types/react-table": "^7.7.14",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"extra-watch-webpack-plugin": "^1.0.3",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"next-compose-plugins": "^2.2.1",
"ttypescript": "^1.5.15",
"typescript": "^4.9.4",
"typescript-transform-paths": "^3.4.6"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"useTabs": true
}
}