forked from remix-run/starter-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 883 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
{
"name": "remix-starter-express",
"version": "1.0.0",
"scripts": {
"build": "cross-env NODE_ENV=production remix build && tsc -b",
"dev": "concurrently \"remix run\" \"tsc -b -w\" \"nodemon --ignore app server.js\"",
"start": "cross-env NODE_ENV=production node server.js"
},
"dependencies": {
"@remix-run/cli": "^0.6.2",
"@remix-run/express": "^0.6.2",
"@remix-run/loader": "^0.6.2",
"@remix-run/react": "^0.6.2",
"express": "^4.17.1",
"morgan": "^1.10.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0"
},
"devDependencies": {
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.5",
"typescript": "^4.0.3"
},
"engines": {
"node": "12"
}
}