-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 3.33 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
{
"name": "VitaLITy-frontend",
"version": "0.1.0",
"description": "Promoting Serendipitous Discovery of Academic Research Articles using Transformers and Visual Analytics.",
"keywords": [
"visualization",
"system",
"dblp",
"research",
"publications",
"umap",
"react",
"typescript"
],
"author": "Arpit Narechania",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vitality-vis/frontend.git"
},
"bugs": {
"url": "https://github.com/vitality-vis/frontend/issues"
},
"homepage": "https://github.com/vitality-vis/frontend",
"scripts": {
"build": "yarn run clean-dist && webpack -p --config=configs/webpack/prod.js",
"clean-dist": "rimraf dist/*",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet",
"start": "yarn run start-dev",
"start-dev": "webpack-dev-server --config=configs/webpack/dev.js",
"start-prod": "yarn run build && node express.js",
"test": "jest --coverage --watchAll --config=configs/jest.json"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@types/d3": "6.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"css-loader": "^5.0.0",
"csv-loader": "^3.0.3",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"express": "^4.17.1",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"image-webpack-loader": "^7.0.1",
"imagemin-gifsicle": "6.0.1",
"jest": "^26.5.3",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.13.0",
"rimraf": "^3.0.2",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"typescript": "^3.9.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@fluentui/react": "^7.146.1",
"@fluentui/react-icons": "^0.1.19",
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@types/jest": "^24.0.3",
"d3": "5.16.0",
"d3-axis": "^2.0.0",
"d3-force": "^2.1.1",
"d3-scale": "^3.2.3",
"d3-scale-chromatic": "^2.0.0",
"d3-selection": "^1.0.0",
"framer-motion": "^2.9.3",
"jest": "23",
"lodash": "^4.17.20",
"match-sorter": "^4.0.1",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"react-loading-overlay": "^1.0.1",
"react-select-fast-filter-options": "^0.2.3",
"react-split": "2.0.9",
"react-table": "^7.6.0",
"react-virtualized-select": "^3.1.3",
"react-window": "^1.8.6",
"regl-scatterplot": "0.14.0",
"styled-components": "^4.3.2"
},
"engines": {
"node": "14.8.0",
"npm": "6.14.7",
"yarn": "1.10.1"
}
}