forked from ensdomains/ens-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.85 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
94
95
96
97
98
99
100
{
"name": "ens-app",
"version": "1.0.0",
"private": true,
"homepage": "https://manager.ens.domains",
"dependencies": {
"@0xproject/utils": "^0.7.3",
"@emotion/core": "^10.0.9",
"@emotion/styled": "^10.0.9",
"@ensdomains/ens": "^0.3.3",
"@ensdomains/ens-022": "npm:@ensdomains/[email protected]",
"@ensdomains/ethregistrar": "^1.2.2",
"@ensdomains/resolver": "^0.1.6",
"@ensdomains/ui": "^1.0.58",
"apollo-cache-inmemory": "^1.2.9",
"apollo-client": "^2.4.5",
"apollo-link": "^1.2.2",
"apollo-link-state": "^0.4.1",
"content-hash": "^2.2.0",
"cross-fetch": "^2.2.3",
"emotion": "^10.0.9",
"esm": "^3.2.22",
"eth-ens-namehash": "^2.0.8",
"ethereum-ens": "^0.7.4",
"ethjs-unit": "^0.1.6",
"ethval": "^1.3.0",
"graphql": "^0.13.2",
"graphql-tag": "2.9.1",
"graphql-tools": "^2.23.1",
"gsap": "^2.0.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"notification-polyfill": "^1.0.0",
"react": "16.7.0-alpha.0",
"react-add-to-calendar": "^0.1.5",
"react-apollo": "^2.1.2",
"react-dom": "16.7.0-alpha.0",
"react-ga": "^2.5.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "2.0.4",
"react-select": "^2.1.0",
"react-spring": "^6.1.7",
"react-tooltip": "^3.9.2",
"react-transition-group-plus": "^0.5.3",
"web3": "1.0.0-beta.34",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "CI=false react-scripts build",
"postbuild": "cp build/index.html build/200.html",
"test": "react-scripts test --env=jsdom",
"test:coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"preTest": "node -r esm src/testing-utils/preTest.js",
"advance": "node src/testing-utils/advance.js",
"cypress:open": "yarn run cypress open",
"deploy:dev": "npm run build && npm run postbuild && surge build ensappdev.surge.sh",
"deploy": "npm run build && npm run postbuild && surge build manager.ens.domains"
},
"prettier": {
"semi": false,
"editor.formatOnSave": true,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@ensdomains/mock": "^1.0.12",
"apollo-client-mock": "0.0.8",
"apollo-link-schema": "^1.1.0",
"babel-plugin-macros": "^2.4.2",
"cypress": "^3.2.0",
"cypress-testing-library": "^2.3.4",
"ganache-cli": "^6.1.0",
"husky": "^2.2.0",
"prettier": "1.17.0",
"pretty-quick": "^1.10.0",
"react-testing-library": "^3.0.2",
"solc": "^0.4.23",
"surge": "^0.20.1"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}