forked from 3box/3box-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.27 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
{
"name": "3box",
"version": "1.17.0",
"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: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 -- --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": "node",
"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": "^1.1.0",
"3id-blockchain-utils": "^0.3.2",
"3id-resolver": "^0.0.5",
"@babel/runtime": "^7.4.5",
"@ethersproject/hdnode": "^5.0.0-beta.133",
"@ethersproject/wallet": "^5.0.0-beta.133",
"did-jwt": "^0.2.0",
"events": "^3.0.0",
"graphql-request": "^1.8.2",
"https-did-resolver": "^0.1.0",
"ipfs": "^0.40.0",
"ipfs-did-document": "^1.2.3",
"ipfs-log": "^4.5.4",
"ipfs-mini": "^1.1.5",
"ipfs-postmsg-proxy": "^3.1.1",
"ipfs-pubsub-room": "^1.4.1",
"ipfs-repo": "^0.30.1",
"is-ipfs": "^0.6.3",
"js-sha256": "^0.9.0",
"muport-did-resolver": "^0.3.0",
"node-fetch": "^2.6.0",
"orbit-db": "^0.23.1",
"orbit-db-cache": "^0.3.0",
"orbit-db-identity-provider": "^0.3.0",
"orbit-db-storage-adapter": "^0.5.3",
"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",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"express": "^4.17.0",
"identity-wallet": "^1.1.0",
"jest": "^23.6.0",
"jsdoc-to-markdown": "^5.0.0",
"standard": "^14.3.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}