-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "race",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "concurrently yarn:lint:*",
"lint:scripts": "next lint",
"lint:styles": "stylelint styles/**/*.css",
"lint:format": "prettier --check components models pages styles utils",
"format": "concurrently yarn:format:*",
"format:scripts": "prettier --write components models pages utils",
"format:styles": "prettier --write styles"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"airtable": "^0.11.1",
"mongoose": "^6.1.1",
"next": "12.0.7",
"next-auth": "^4.0.5",
"react": "17.0.2",
"react-data-table-component": "^7.4.5",
"react-dom": "17.0.2",
"styled-components": "^5.3.3",
"web3": "^1.6.1"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"concurrently": "^6.4.0",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"postcss": "^8.4.4",
"prettier": "^2.5.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-prettier": "^2.0.0",
"tailwindcss": "^3.0.0"
}
}