-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.96 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
{
"name": "prototype-cde",
"version": "1.0.0",
"description": "",
"scripts": {
"build-js": "esbuild client/index.tsx --bundle --loader:.jpg=dataurl --loader:.png=dataurl --outfile=dist/index.js '--define:process.env.NODE_ENV=\"development\"'",
"build-css": "esbuild client/css/index.css --bundle --loader:.woff2=dataurl --outfile=dist/index.css",
"watch-js": "esbuild client/index.tsx --watch --bundle --loader:.jpg=dataurl --loader:.png=dataurl --outfile=dist/index.js '--define:process.env.NODE_ENV=\"development\"'",
"watch-css": "esbuild client/css/index.css --watch --bundle --loader:.woff2=dataurl --outfile=dist/index.css",
"build-dev": "concurrently --kill-others \"npm run build-js\" \"npm run build-css\"",
"build-prod": "esbuild client/index.tsx --bundle --outfile=dist/index.js --minify '--define:process.env.NODE_ENV=\"production\"'",
"start": "node ./server/index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0",
"esbuild": "^0.8.57",
"nodemon": "^2.0.4",
"typescript": "^4.0.5"
},
"dependencies": {
"@mantine/core": "^4.2.9",
"@mantine/hooks": "^4.2.11",
"chart.js": "^2.9.4",
"chroma-js": "^2.1.2",
"cytoscape": "^3.16.1",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"file-saver": "^2.0.5",
"html2canvas": "^1.3.2",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"merge-images": "^2.0.0",
"parse-stl": "^1.0.2",
"react": "^16.13.1",
"react-chartjs-2": "^2.11.1",
"react-color": "^2.19.3",
"react-dom": "^16.13.1",
"react-dropdown": "^1.9.0",
"react-hover": "^2.0.0",
"react-hyperscript": "^3.2.0",
"react-modal": "^3.15.1",
"react-router-dom": "^5.2.0",
"react-sticky-mouse-tooltip": "^0.0.1",
"react-tabs": "^3.1.1",
"react-tooltip": "^4.2.21",
"react-virtualized": "^9.22.2",
"reactour": "^1.18.7",
"styled-components": "^5.3.5",
"three": "0.126.1"
}
}