-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 980 Bytes
/
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
{
"name": "commands.dev",
"private": true,
"scripts": {
"dev": "next dev",
"build": "tsc lib/*.ts && next build",
"start": "tsc lib/*.ts && next start",
"lint": "next lint",
"postbuild": "tsc ./lib/build-search.ts && node ./lib/build-search.js"
},
"dependencies": {
"algoliasearch": "^5.12.0",
"dotenv": "^16.4.5",
"next": "^15.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hotkeys-hook": "^4.5.1",
"react-instantsearch": "^7.13.6",
"react-tooltip": "^5.28.0",
"seedrandom": "^3.0.5",
"warp-workflows": "^1.0.10"
},
"devDependencies": {
"@types/node": "^20.17.5",
"@types/react": "^18.3.12",
"@types/seedrandom": "^3.0.8",
"@types/webpack-env": "^1.18.5",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.2",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3"
}
}