-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
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
{
"name": "mintbase-examples-simple-marketplace",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint \"**/*.+(ts|tsx)\"",
"eslint:fix": "eslint --fix \"**/*.+(ts|tsx)\"",
"prepare": "cd ../ && husky install ./simple-marketplace/.husky",
"pre-commit": "tsc && lint-staged",
"ts-lint": "tsc --noEmit --incremental"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@headlessui/react": "^1.7.14",
"@mantine/hooks": "^6.0.0",
"@mintbase-js/auth": "^0.3.2-beta.12",
"@mintbase-js/react": "^0.3.2-beta.12",
"@mintbase-js/rpc": "^0.4.0-beta.1",
"@mintbase-js/sdk": "^0.3.2-beta.12",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.0",
"@react-three/drei": "^9.66.0",
"@react-three/fiber": "^8.12.2",
"@reduxjs/toolkit": "^1.9.2",
"big.js": "^6.2.1",
"dayjs": "^1.11.7",
"graphql": "^16.5.0",
"lodash": "^4.17.21",
"mintbase": "^0.8.1",
"mintbase-ui": "^0.8.2",
"near-api-js": "^0.44.2",
"next": "12.1.6",
"react": "^18.1.0",
"react-currency-input-field": "^3.6.10",
"react-date-picker": "^9.2.0",
"react-dom": "^18.1.0",
"react-multi-carousel": "^2.8.2",
"react-redux": "^8.0.5",
"react-toastify": "^9.1.2",
"three": "^0.151.3"
},
"devDependencies": {
"@types/node": "17.0.40",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@types/three": "^0.150.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"autoprefixer": "^10.4.7",
"eslint": "8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"isomorphic-unfetch": "^4.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24",
"typescript": "4.7.3"
},
"lint-staged": {
"./*/**/*.{js,jsx,ts,tsx}": [
"npm run eslint:fix"
]
}
}