-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.03 KB
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
{
"name": "kitspace-frontend",
"scripts": {
"build": "next build",
"build-fallback": "next build && next export -o static_fallback",
"dev": "next dev",
"download-geoip": "node -e \"import('geolite2-redist').then(geolite => geolite.downloadDbs({dbList: ['GeoLite2-Country'], path: 'src/pages/api/geoip/'}))\"",
"fmt": "prettier --write '*.json' 'src/**/*.{ts,js,tsx,jsx,json}'",
"lint": "next lint",
"start": "next start",
"test": "vitest"
},
"license": "AGPL-3.0",
"private": true,
"type": "module",
"dependencies": {
"1-click-bom-minimal": "https://github.com/kitspace/npm-1-click-bom-minimal",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"@types/node": "^22.0.0",
"highlight.js": "^11.6.0",
"lodash.debounce": "^4.0.8",
"lodash.flattendeep": "^4.4.0",
"maxmind": "^4.3.23",
"meilisearch": "^0.25.1",
"next": "^15.2.4",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intersection-observer": "^9.4.1",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^3.0.0-beta.2",
"swr": "^2.3.2",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/lodash": "^4.14.188",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": ">=7.0.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "3.4.0",
"geolite2-redist": "^3.1.1",
"jsdom": "^20.0.1",
"next-router-mock": "^0.7.4",
"prettier": "^2.0.5",
"sass": "^1.49.6",
"typescript": "^4.8.4",
"vite": "^6.3.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5",
"vitest-fetch-mock": "^0.4.3"
}
}