This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
110 lines (110 loc) · 3.85 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
108
109
110
{
"name": "3box",
"version": "1.22.2",
"description": "Interact with user data",
"main": "lib/3box.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src/**",
"test": "rm -rf ./tmp && jest --forceExit --coverage --runInBand --testURL=\"http://localhost\"",
"build:es5": "rm -rf ./lib; ./node_modules/.bin/babel src --out-dir lib --ignore=src/__tests__/,src/__mocks__/",
"build:dist": "./node_modules/.bin/webpack --config webpack.config.js --mode=development",
"build:dist:example": "./node_modules/.bin/webpack --config webpack.example.config.js --mode=development",
"build:dist:dev": "./node_modules/.bin/webpack --config webpack.dev.config.js --mode=development",
"build:dist:prod": "./node_modules/.bin/webpack --config webpack.config.js --mode=production --output-filename 3box.min.js",
"build:dist:api": "./node_modules/.bin/webpack --config webpack.api.config.js --mode=production",
"build": "npm run build:es5; npm run build:dist; npm run build:dist:prod; npm run build:dist:api",
"prepublishOnly": "npm run build; npm run generate-readme",
"example-server:start": "node example/server.js",
"example:start": "npm run build:dist:example -- --watch & npm run build:dist:dev -- --watch & npm run example-server:start",
"generate-readme": "cp readme-template.md README.md; ./node_modules/.bin/jsdoc2md -g none -d 3 'src/**/*.js' >> README.md"
},
"browser": {
"fs": false,
"child_process": false
},
"jest": {
"testEnvironment": "jest-environment-uint8array",
"testPathIgnorePatterns": [
"node_modules",
"lib",
"<rootDir>/src/__tests__/testUtils.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/3box-js.git"
},
"author": "3box <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/3box/3box-js/issues"
},
"homepage": "https://github.com/3box/3box-js#readme",
"dependencies": {
"3box-orbitdb-plugins": "^2.1.2",
"3box-shared-cache": "^1.1.0",
"3id-blockchain-utils": "^0.4.1",
"3id-connect": "0.1.0",
"3id-resolver": "^1.0.0",
"@babel/runtime": "^7.4.5",
"@ethersproject/hdnode": "5.0.2",
"@ethersproject/wallet": "5.0.2",
"did-jwt": "^4.2.0",
"did-resolver": "^1.1.0",
"events": "^3.0.0",
"graphql-request": "^1.8.2",
"https-did-resolver": "^1.0.0",
"ipfs": "^0.46.0",
"ipfs-did-document": "^1.2.3",
"ipfs-log": "^4.6.5",
"ipfs-pubsub-room": "^2.0.1",
"ipfs-repo": "^3.0.2",
"is-ipfs": "^1.0.3",
"js-sha256": "^0.9.0",
"levelup": "^4.4.0",
"libp2p-pubsub": "^0.4.6",
"lodash.merge": "^4.6.2",
"muport-did-resolver": "^1.0.2",
"node-fetch": "^2.6.0",
"orbit-db": "^0.25.1",
"orbit-db-cache": "^0.3.0",
"orbit-db-identity-provider": "^0.3.0",
"orbit-db-storage-adapter": "^0.5.3",
"p-timeout": "^3.2.0",
"store": "^2.0.12",
"tweetnacl": "^1.0.1",
"tweetnacl-util": "^0.15.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@portis/web3": "^2.0.0-beta.55",
"@walletconnect/web3-provider": "^1.0.0-beta.47",
"authereum": "0.0.4-beta.155",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"express": "^4.17.0",
"fortmatic": "^2.0.6",
"identity-wallet": "^1.1.3",
"jest": "^26.0.1",
"jest-environment-uint8array": "^1.0.0",
"jsdoc-to-markdown": "^5.0.0",
"standard": "^14.3.1",
"web3modal": "^1.6.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"standard": {
"ignore": [
"/src/modernizr.js"
]
}
}