-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 939 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix build && run-p \"dev:*\"",
"dev:node": "cross-env NODE_ENV=development nodemon ./build/index.js --watch ./build/index.js",
"dev:remix": "remix watch",
"start": "cross-env NODE_ENV=production node ./build/index.js"
},
"dependencies": {
"@remix-run/express": "^1.7.0",
"@remix-run/node": "^1.7.0",
"@remix-run/react": "^1.7.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.0",
"@remix-run/eslint-config": "^1.7.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"eslint": "^8.20.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}