-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
104 lines (104 loc) · 3.01 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": "circles-myxogastria",
"version": "2.15.2",
"description": "Webapp and mobile client for Circles",
"main": "src/index.js",
"private": true,
"contributors": [
"adzialocha",
"mikozet",
"louilinn",
"llunaCreixent"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/CirclesUBI/circles-myxogastria.git"
},
"engines": {
"node": "18.x"
},
"scripts": {
"build": "npm run clear && cross-env NODE_ENV=production webpack",
"clear": "rimraf ./build",
"lint": "eslint .",
"serve": "cross-env NODE_ENV=development webpack-dev-server",
"start": "npm run serve",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^11.2.7",
"babel-loader": "^8.3.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"jest": "^27.5.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"truffle": "^5.11.5",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"@circles/core": "^4.10.2",
"@circles/timecircles": "^1.0.6",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/lab": "^5.0.0-alpha.146",
"@mui/material": "^5.14.11",
"@mui/styles": "^5.14.11",
"@mui/x-date-pickers": "^6.16.0",
"@sentry/browser": "^7.73.0",
"@sentry/tracing": "^7.73.0",
"@zxing/library": "^0.21.1",
"bip39": "^3.1.0",
"clipboard": "^2.0.11",
"clsx": "^2.0.0",
"compress.js": "^1.2.2",
"file-saver": "^2.0.5",
"immutability-helper": "^3.1.1",
"isomorphic-fetch": "^3.0.0",
"jazzicon": "^1.5.0",
"js-file-download": "^0.4.12",
"luxon": "^3.4.3",
"mime": "^3.0.0",
"notistack": "^3.0.1",
"qrcode": "^1.5.3",
"qs": "^6.11.2",
"react": "^17.0.2",
"react-div-100vh": "^0.7.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.9",
"react-router-dom": "^5.3.4",
"react-swipeable-views": "^0.14.0",
"redux": "^4.2.1",
"redux-create-action-types": "^2.1.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"rxjs": "^7.8.1",
"web3": "^1.10.0"
}
}