forked from BitSavage0202/ships-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "opensea-ships-log",
"version": "1.0.0",
"description": "An example app listing recent auctions and bids on OpenSea, with the ability to buy items or accept offers right from the page",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "npm run build && git add . && git ci -m 'build' && git push heroku"
},
"author": "Alex Atallah <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ProjectOpenSea/ships-log.git"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"bignumber.js": "^8.0.1",
"bootstrap": "^4.1.3",
"eslint-config-airbnb": "^17.0.0",
"moment": "^2.22.2",
"opensea-js": "latest",
"portis": "^1.3.4",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-icons-kit": "^1.1.7",
"styled-components": "^3.3.3",
"web3": "^1.6.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.10.0",
"react-scripts": "^2.0.0-next.a671462c"
},
"license": "MIT",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}