-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.21 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
{
"name": "analysis-tools-website",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"search-index": "ts-node -r tsconfig-paths/register --compiler-options '{\"module\":\"CommonJS\"}' ./algolia-index.ts",
"start": "next start",
"lint": "next lint",
"pretty-quick": "pretty-quick"
},
"dependencies": {
"@giscus/react": "^2.2.6",
"@octokit/core": "^3.5.1",
"@splidejs/react-splide": "^0.7.10",
"@splidejs/splide-extension-video": "^0.8.0",
"@types/react-dom": "^18.3.0",
"algoliasearch": "^4.20.0",
"cache-manager": "^4.1.0",
"cache-manager-fs-hash": "^1.0.0",
"chart.js": "^3.9.1",
"classnames": "^2.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"firebase-admin": "^10.0.2",
"gray-matter": "^4.0.3",
"marked": "^4.0.12",
"next": "^13.5.6",
"protobufjs": "^7.3.0",
"react": "^18.3.1",
"react-chartjs-2": "^4.3.1",
"react-dom": "^18.3.1",
"react-image-gallery": "^1.2.9",
"react-instantsearch-hooks-web": "^6.32.1",
"react-markdown": "^8.0.3",
"react-query": "^3.39.2",
"react-select-search": "^4.1.6",
"react-share": "^5.1.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@types/cache-manager": "^4.0.1",
"@types/cache-manager-fs-hash": "^0.0.1",
"@types/marked": "^4.0.2",
"@types/node": "^17.0.16",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-next": "^13.5.6",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"volta": {
"node": "20.9.0"
}
}