forked from nounsDAO/nouns-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 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
{
"name": "@nouns/webapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"react-tooltip": "^4.2.21",
"@lingui/detect-locale": "^3.13.2",
"@lingui/cli": "^3.9.0",
"@lingui/core": "^3.9.0",
"@lingui/macro": "^3.9.0",
"@lingui/react": "^3.9.0",
"@apollo/client": "^3.3.21",
"bad-words": "^3.0.4",
"@davatar/react": "^1.10.3",
"@heroicons/react": "^1.0.6",
"@fortawesome/fontawesome-svg-core": "1.2.35",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"@netlify/functions": "^0.7.2",
"@nouns/assets": "^0.2.0",
"@nouns/sdk": "^0.1.4",
"@reduxjs/toolkit": "^1.6.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@usedapp/core": "0.9.1",
"@usedapp/coingecko": "0.5.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/walletlink-connector": "^6.2.3",
"@web3-react/fortmatic-connector": "^6.1.6",
"@web3-react/ledger-connector": "^6.1.9",
"@web3-react/trezor-connector": "^6.1.9",
"@web3-react/walletconnect-connector": "^6.2.4",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"bootstrap": "^5.1",
"bs-custom-file-input": "^1.3.4",
"clsx": "^1.1.1",
"connected-react-router": "^6.9.1",
"dayjs": "^1.10.7",
"eslint-config-react-app": "^6.0.0",
"ethers": "^5.6.8",
"graphql": "^15.5.1",
"pngjs": "^6.0.0",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-bootstrap": "^2.0.0",
"redux-devtools-extension": "^2.13.9",
"react-dom": "^17.0.2",
"react-markdown": "^7.0.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-stepz": "^1.0.2",
"redux": "^4.1.0",
"remark-breaks": "^3.0.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/pngjs": "^6.0.1",
"@types/ramda": "^0.27.42",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/bad-words": "^3.0.1",
"dotenv": "^10.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "yarn i18n:compile && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "yarn i18n:compile",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"i18n:pseudo": "lingui extract --locale pseudo && lingui compile"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}