forked from warpdotdev/commands.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"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": {
"@tailwindcss/line-clamp": "^0.3.1",
"algoliasearch": "^4.12.0",
"dotenv": "^14.3.2",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hotkeys-hook": "^3.4.4",
"react-instantsearch-dom": "^6.21.1",
"react-tooltip": "^4.2.21",
"seedrandom": "^3.0.5",
"warp-workflows": "^1.0.10"
},
"devDependencies": {
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"@types/react-instantsearch-dom": "^6.12.2",
"@types/seedrandom": "^3.0.2",
"@types/webpack-env": "^1.16.3",
"autoprefixer": "^10.4.2",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.16",
"typescript": "4.5.4"
}
}