-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.97 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
{
"name": "trust-teaming",
"version": "1.0.0",
"description": "Trust teaming testbed for SHINE Lab experiment",
"main": "src/app.py",
"scripts": {
"start": "cd src && python3.10 app.py",
"build": "webpack --progress --config webpack.config.js",
"pip": "pip3 install -r requirements.txt",
"venv": "source ~/.virtualenvs/trust/bin/activate",
"dev-build": "webpack --progress -d --config webpack.config.js",
"dev-watch": "webpack --progress --config webpack.config.js --watch -d source-map",
"debug": "cd src && python3 -m debugpy --wait-for-client --listen 5678 app.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItsMichal/TrustTeaming.git"
},
"author": "Michal Bodzianowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/ItsMichal/TrustTeaming/issues"
},
"homepage": "https://github.com/ItsMichal/TrustTeaming#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"eslint": "^8.23.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.7.1",
"tailwindcss": "^3.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"css-loader": "^6.7.1",
"date-fns": "^2.28.0",
"framer-motion": "^6.2.4",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"luxon": "^2.3.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-date-range": "^1.4.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.0.2",
"socket.io-client": "^4.4.1",
"style-loader": "^3.3.1"
}
}