-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
79 lines (79 loc) · 2.2 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
{
"name": "convert.aragon.org",
"version": "1.0.0",
"private": true,
"main": "src/index.js",
"homepage": "https://github.com/aragon/convert.aragon.org",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "next build",
"build:mainnet": "CHAIN_ID=1 npm run build",
"build:rinkeby": "CHAIN_ID=4 npm run build",
"deploy": "NODE_ENV=production npm run build && echo 'convert.aragon.org' > dist/CNAME && gh-pages -d dist",
"deploy:mainnet": "CHAIN_ID=1 npm run deploy",
"deploy:rinkeby": "CHAIN_ID=4 npm run deploy",
"lint": "eslint ./components ./lib ./pages",
"serve": "serve dist -p 3000",
"start": "next dev -p 8080",
"start:mainnet": "CHAIN_ID=1 npm start",
"start:rinkeby": "CHAIN_ID=4 npm start",
"test": "jest"
},
"dependencies": {
"@sentry/browser": "^5.11.1",
"@zeit/next-css": "^1.0.1",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"ethers": "^4.0.41",
"gh-pages": "^2.1.1",
"graphql-request": "^1.8.2",
"next": "^9.3.2",
"next-fonts": "^1.0.3",
"next-images": "^1.3.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-blockies": "^1.4.1",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^16.13.0",
"react-reveal": "^1.2.2",
"react-spring": "^8.0.27",
"styled-components": "^5.0.1",
"use-viewport": "^0.2.0",
"use-wallet": "^0.5.0",
"web3-eth-contract": "^1.2.4",
"web3-utils": "^1.2.4"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.0.1",
"eslint-config-react-tools": "^1.1.7",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lint-staged": "^10.0.9",
"prettier": "^1.19.1",
"serve": "^11.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"components/**/*.js": [
"eslint --fix"
],
"lib/**/*.js": [
"eslint --fix"
],
"pages/**/*.js": [
"eslint --fix"
]
}
}