-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.89 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
{
"name": "3box-react-hooks",
"version": "2.0.1",
"description": "React hooks wrapping the 3box API",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register",
"build:dist": "./node_modules/.bin/webpack --watch --config webpack.config.js --mode=development",
"build:dist:prod": "./node_modules/.bin/webpack --config webpack.config.js --mode=production",
"build:api": "./node_modules/.bin/webpack --config webpack.api.js --mode=development",
"build:api:prod": "./node_modules/.bin/webpack --config webpack.api.js --mode=production",
"build:example": "./node_modules/.bin/webpack --watch --config webpack.example.js --mode=development",
"example": "node example/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raksooo/3box-react-hooks.git"
},
"keywords": [
"3box",
"react",
"hooks",
"profile",
"box",
"space"
],
"author": "Oskar Nyberg",
"bugs": {
"url": "https://github.com/raksooo/3box-react-hooks/issues"
},
"homepage": "https://github.com/raksooo/3box-react-hooks#readme",
"devDependencies": {
"3box": "^1.8.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"babel-loader": "^8.0.5",
"babel-runtime": "^6.26.0",
"chai": "^4.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eth-provider": "^0.2.2",
"express": "^4.17.0",
"ganache-cli": "^6.4.3",
"jsdom": "^14.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^6.1.3",
"nacl-did": "^0.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"serve-static": "^1.14.1",
"web3-fake-provider": "^0.1.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {},
"peerDependencies": {
"react": ">= 16.8.6",
"react-dom": ">= 16.8.6"
}
}