-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "neptune-challenge",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --check \"**/*.{js,jsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx}\"",
"eslint": "eslint --ignore-path .gitignore --ext .js,.jsx .",
"eslint:fix": "eslint --ignore-path .gitignore --fix --ext .js,.jsx .",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"browserslist": [
"> 0.3%",
"not dead",
"not ie 11",
"not op_mini all",
"not opera > 0"
],
"dependencies": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@ethersproject/providers": "^5.5.0",
"@ethersproject/units": "^5.5.0",
"@mui/icons-material": "^5.1.1",
"@mui/material": "^5.1.1",
"@mui/x-data-grid": "^5.0.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"framer-motion": "^5.3.0",
"next": "^12.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"swr": "^1.0.1"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/react": "^17.0.35",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"prettier": "2.4.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "^4.4.4"
}
}