-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 2.3 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
{
"name": "ipfs-browser-gateway",
"version": "1.1.0",
"private": false,
"homepage": "https://onetwo.ren/ipfs-browser-gateway/",
"dependencies": {
"@rescripts/rescript-env": "0.0.10",
"async": "^3.1.0",
"cids": "^0.7.1",
"file-type": "^12.1.0",
"filesize": "^4.1.2",
"gh-pages": "^2.0.1",
"history": "^4.9.0",
"ipfs": "^0.36.4",
"ipfs-unixfs": "^0.1.16",
"mime-types": "^2.1.24",
"multihashes": "^0.4.15",
"promisify-es6": "^1.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"readable-stream-node-to-web": "^1.0.1",
"stream": "^0.0.2",
"styled-components": "^4.3.2",
"styled-flex-component": "^3.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.5.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@rescripts/cli": "0.0.11",
"babel-plugin-array-last-index": "0.0.4",
"babel-plugin-closure-elimination": "^1.3.0",
"babel-plugin-flow-runtime": "^0.19.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"cross-env": "^5.2.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-flowtype": "^3.12.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"flow-typed": "^2.6.1",
"rescript-disable-eslint": "^1.0.1",
"rescript-service-worker-loader": "^1.0.2"
},
"scripts": {
"start": "cross-env NODE_ENV=development rescripts start",
"build": "rescripts build && cp ./build/index.html ./build/404.html",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "rescripts test --env=jsdom"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}