-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
{
"name": "flowspace.js",
"version": "0.0.1",
"description": "a data visualization tool for TensorFlow.js",
"main": "handshake.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"start": "nodemon ./server.js",
"dev": "concurrently \"webpack serve --hot --progress --color\" \"nodemon ./server.js\"",
"format": "prettier --write \"***/**/*.{js,jsx}\"",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/FlowSpace.git"
},
"author": "Mark Alexander, Saif Beiruty, Laurence Diarra, Mike Oakes, and Sabre Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/FlowSpace/issues"
},
"homepage": "https://github.com/oslabs-beta/FlowSpace#readme",
"dependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.3",
"@tensorflow/tfjs-node": "^3.19.0",
"concurrently": "^7.3.0",
"d3": "^7.6.1",
"express": "^4.18.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flow-renderer": "^10.3.16",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"sass-loader": "^13.0.2",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"url-loader": "^4.1.1",
"web-vitals": "^2.1.4"
},
"bin": {
"flowspace": "./server.js"
},
"devDependencies": {
"jest": "^29.2.2",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"testEnvironment": "jest-environment-node",
"transform": {}
}
}