forked from web3index/web3index-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.73 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
{
"name": "web3index-org",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint-fix": "yarn prettier-fix && yarn eslint-fix",
"eslint-fix": "eslint . --ext js,jsx,ts,tsx --fix --max-warnings=0",
"prettier-fix": "prettier --write '**/*.{ts,js,css,html,md,tsx,mdx,graphql,gql}'",
"vercel-build": "next build",
"prisma:generate": "prisma generate",
"postinstall": "prisma generate"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.18.0",
"@mdx-js/loader": "^1.6.22",
"@modulz/design-system": "^0.6.2",
"@modulz/radix-icons": "^4.0.0",
"@next/mdx": "^10.2.0",
"@prisma/client": "3.15.2",
"@radix-ui/colors": "^0.1.7",
"@radix-ui/react-accordion": "^0.0.13",
"@radix-ui/react-icons": "^1.0.3",
"@radix-ui/react-tooltip": "0.1.0",
"@stitches/core": "latest",
"@stitches/react": "latest",
"@videojs/http-streaming": "^2.11.0",
"@videojs/themes": "^1.0.1",
"ajv": "^7.2.1",
"axios": "^0.21.1",
"dat.gui": "^0.7.7",
"dayjs": "^1.10.4",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"gray-matter": "^4.0.2",
"hls.js": "^1.0.10",
"json-schema-to-typescript": "^10.1.4",
"lightweight-charts": "^3.3.0",
"limestone": "^0.2.0",
"limestone-api": "^3.0.7",
"mux.js": "^5.14.0",
"next": "^10.2.0",
"next-mdx-remote": "^2.1.4",
"next-seo": "^4.23.0",
"next-themes": "^0.0.14",
"numeral": "^2.0.6",
"path": "^0.12.7",
"random-useragent": "^0.5.0",
"raw-loader": "^4.0.2",
"react": "17.0.1",
"react-dom": "17.0.2",
"react-fast-marquee": "^1.1.2",
"react-markdown": "^5.0.3",
"react-query": "^3.24.4",
"react-table": "^7.6.3",
"recharts": "2.1.9",
"remark-dropcap": "^0.1.7",
"sass": "^1.42.1",
"video.js": "^7.15.4",
"videojs-contrib-hls": "^5.15.0",
"videojs-contrib-quality-levels": "^2.1.0",
"videojs-hls-quality-selector": "^1.1.4"
},
"devDependencies": {
"@types/node": "^14.14.33",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prisma": "3.15.2",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,html,tsx,gql,graphql}": [
"eslint --fix",
"prettier --write"
]
}
}