-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.68 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
{
"name": "blossom",
"version": "0.5.0",
"description": "Blossom Fairdata Protocol browser extension",
"main": "index.js",
"homepage": "https://github.com/fairDataSociety/blossom",
"scripts": {
"start": "concurrently \"npm run start:main\" \"npm run start:ui\"",
"start:main": "webpack --watch",
"start:ui": "webpack --watch --env ui=true",
"build": "webpack --env build=true",
"lint": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"swarm-ext": "./scripts/compile-swarm-extension.sh",
"swarm-ext:ci": "./scripts/compile-swarm-extension.sh true",
"test": "jest --runInBand",
"test:ci": "CI=true jest --runInBand",
"test:demo": "npm run test -- --demo=true",
"test:watch": "jest --watch --runInBand",
"zip": "cd dist/ && bestzip ../extension.zip *"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@types/chrome": "^0.0.237",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"axios": "^1.1.3",
"babel-loader": "^8.2.3",
"bestzip": "^2.2.1",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^10.2.4",
"dotenv": "^16.0.0",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"prettier": "^2.5.1",
"puppeteer": "^14.1.1",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@ethersphere/bee-js": "^5.0.0",
"@ethersphere/swarm-extension": "^0.7.0",
"@fairdatasociety/fdp-storage": "github:fairDataSociety/fdp-storage#fix/bee-js-new-762",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.5.0",
"@mui/system": "^5.5.0",
"async-mutex": "^0.4.0",
"crypto-js": "^4.1.1",
"ethers": "^5.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.28.0",
"react-intl-universal": "^2.4.12",
"react-router-dom": "^6.2.2",
"uuid": "^9.0.0"
}
}