forked from remix-run/starter-express
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 757 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 757 Bytes
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
{
"private": true,
"name": "remix-starter-express",
"scripts": {
"postinstall": "remix build",
"build": "remix build",
"dev": "pm2-dev pm2.config.js",
"start": "node server.js"
},
"dependencies": {
"@remix-run/data": "^0.14.0",
"@remix-run/express": "^0.14.0",
"@remix-run/react": "^0.14.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"morgan": "^1.10.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0"
},
"devDependencies": {
"@remix-run/dev": "^0.14.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"pm2": "^4.5.4",
"typescript": "^4.1.2"
},
"engines": {
"node": "12"
}
}