-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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": "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)\"",
"pre-commit": "tsc && lint-staged",
"ts-lint": "tsc --noEmit --incremental"
},
"dependencies": {
"@mintbase-js/auth": "0.4.0-beta.1",
"@mintbase-js/data": "0.4.0-beta.1",
"@mintbase-js/react": "^0.4.0-beta.1",
"@mintbase-js/sdk": "0.4.0-beta.1",
"@mintbase-js/storage": "0.4.0-beta.1",
"@near-wallet-selector/modal-ui": "^7.3.0",
"big.js": "^6.2.1",
"graphql": "^16.5.0",
"lodash": "^4.17.21",
"mintbase-ui": "^0.8.2",
"near-api-js": "^2.1.3",
"next": "12.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.2"
},
"devDependencies": {
"@types/node": "17.0.40",
"@types/react": "18.0.12",
"@types/react-dom": "18.0.5",
"@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",
"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"
]
}
}