-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix build && run-p \"dev:*\"",
"dev:node": "cross-env NODE_ENV=development nodemon ./server.js --watch ./server.js",
"dev:remix": "remix watch",
"start": "cross-env NODE_ENV=production node ./server.js",
"postinstall": "patch-package"
},
"dependencies": {
"@remix-run/express": "^1.6.3",
"@remix-run/node": "^1.6.3",
"@remix-run/react": "^1.6.3",
"algoliasearch": "^4.13.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"instantsearch.js": "^4.43.0",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-instantsearch-hooks-server": "^6.29.0",
"react-instantsearch-hooks-web": "^6.29.0"
},
"devDependencies": {
"@remix-run/dev": "^1.6.3",
"@remix-run/eslint-config": "^1.6.3",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"eslint": "^8.15.0",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14"
},
"prettier": {
"singleQuote": false
},
"keywords": [
"algolia",
"remix"
],
"name": "remix-algolia-hook",
"description": "A use case of Algolia and Remix Run framework"
}