forked from remix-run/remix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 928 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 928 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
33
34
35
36
{
"name": "remix-example-blog-tutorial",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "cross-env NODE_ENV=production remix build",
"dev": "cross-env NODE_ENV=development remix dev",
"postinstall": "remix setup node",
"start": "cross-env NODE_ENV=production remix-serve build"
},
"dependencies": {
"@remix-run/react": "1.2.3",
"@remix-run/serve": "1.5.0",
"cross-env": "^7.0.3",
"front-matter": "^4.0.2",
"marked": "^4.0.12",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "1.2.3",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "1.2.3",
"@remix-run/eslint-config": "1.2.3",
"@types/marked": "^4.0.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"eslint": "^8.10.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14"
}
}