-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
107 lines (107 loc) · 3.73 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
105
106
107
{
"name": "@ethersphere/swarm-extension",
"version": "0.7.1",
"description": "Extension to properly handle Swarm dApps in browsers",
"keywords": [
"Swarm",
"extension",
"browser"
],
"homepage": "https://github.com/nugaon/swarm-extension",
"bugs": {
"url": "https://github.com/nugaon/swarm-extension/issues/"
},
"license": "BSD-3-Clause",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nugaon/swarm-extension.git"
},
"types": "types/index.d.ts",
"scripts": {
"dev": "concurrently \"npm run compile:deps -- --watch --env mode=development\" \"npm run compile:main -- --watch --env mode=development\"",
"compile": "rimraf dist && npm run compile:deps -- --progress && npm run compile:main -- --progress",
"compile:deps": "webpack --env buildDeps=true",
"compile:main": "webpack",
"test:copy-lib": "./scripts/tests-copy-library.sh",
"test": "npm run test:copy-lib && jest --config=jest.config.ts",
"test:demo": "npm run test -- --demo=true --runInBand",
"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\"",
"zip": "cd dist/ && bestzip ../extension.zip *",
"update:test-bee-js-browser": "cp node_modules/@ethersphere/bee-js/dist/index.browser.min.js test/bzz-test-page/bee-js.min.js",
"bee": "bee-factory start"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ethersphere/bee-factory": "^0.4.1",
"@types/chrome": "^0.0.195",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.19",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node": "^14.14.16",
"@types/puppeteer": "^5.4.2",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-jss": "^10.0.0",
"@types/rimraf": "^3.0.0",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/webpack": "^4.41.25",
"@types/webpack-bundle-analyzer": "^3.9.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-jest": "^29.0.3",
"babel-loader": "^8.2.2",
"bestzip": "^2.2.0",
"concurrently": "^6.0.2",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.1.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"file-loader": "^6.2.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-puppeteer": "^6.1.1",
"prettier": "^2.2.1",
"puppeteer": "^17.1.3",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webextension-polyfill": "^0.8.0",
"webpack": "^5.11.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.0",
"ws": "^7.4.4"
},
"dependencies": {
"@ethersphere/bee-dashboard": "^0.20.2",
"@ethersphere/bee-js": "^4.1.1",
"@ethersphere/swarm-cid": "^0.1.0",
"isarray": "^2.0.5",
"nanoid": "^3.1.31",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"react-jss": "^10.9.0",
"safe-buffer": "^5.2.1"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0",
"bee": "1.6.0-6ceadd35"
}
}