-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.83 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
{
"name": "webfm",
"version": "3.0.1",
"description": "A web-based functional mapping utility.",
"main": "server/server.js",
"scripts": {
"start": "node --experimental-json-modules server/server.js",
"dev": "nodemon --experimental-json-modules server/server.js",
"docs:json": "typedoc --json docs/srcdoc.json --mode modules",
"build": "webpack --config webpack.config.js"
},
"nodemonConfig": {
"ignore": [
"dist/*",
"server/build/*",
"migration/*",
"data/*"
],
"ext": "ts",
"watch": [
"src"
],
"execMap": {
"ts": "ts-node"
}
},
"contributors": [
{
"name": "Christopher Coogan",
"email": "[email protected]"
},
{
"name": "Max Collard",
"email": "[email protected]"
}
],
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@react-three/drei": "^3.9.0",
"bootstrap": "^4.6.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"css-loader": "^5.1.1",
"csv-parse": "^4.15.3",
"d3": "^6.5.0",
"d3-heatmap": "^1.2.1",
"d3-horizon-chart": "0.0.6",
"d3-scale": "^3.2.3",
"d3-selection": "^2.0.0",
"d3-shape": "^2.0.0",
"d3fc": "^15.1.2",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"gaussian": "^1.2.0",
"html-webpack-plugin": "^5.2.0",
"jstat": "^1.9.4",
"mathjs": "^9.2.0",
"mini-css-extract-plugin": "^1.3.9",
"multer": "^1.4.2",
"node-polyfill-webpack-plugin": "^1.0.3",
"painterro": "^1.2.36",
"react": "^17.0.1",
"react-bootstrap": "^1.5.1",
"react-bootstrap-icons": "^1.4.0",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-three-fiber": "^5.3.19",
"react-three-gui": "^0.4.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"stream": "0.0.2",
"swagger-ui-express": "^4.1.6",
"three": "^0.126.1",
"transform": "^1.1.2",
"ts-loader": "^8.0.17",
"webpack-dev-middleware": "^4.1.0",
"webpack-merge": "^5.7.3",
"write-file-webpack-plugin": "^4.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"typedoc": "^0.20.33",
"typescript": "^4.2.3",
"webpack": "^5.27.2",
"webpack-cli": "^4.5.0"
}
}