-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 890 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,
"name": "remix-app-template-js",
"description": "",
"license": "",
"scripts": {
"build": "remix build",
"dev": "remix dev",
"postinstall": "remix setup node",
"start": "remix-serve build",
"dev:css": "postcss styles/*.css --base styles --dir app/styles -w",
"build:css": "postcss styles/*.css --base styles --dir app/styles --env production"
},
"dependencies": {
"@remix-run/react": "^1.1.1",
"@remix-run/serve": "^1.1.1",
"enolib": "^0.8.2",
"markdown-it": "^12.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.1"
},
"devDependencies": {
"@remix-run/dev": "^1.1.1",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-nested": "^5.0.6",
"postcss-scss": "^4.0.3"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}