-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "yarn build:css && remix build",
"build:css": "tailwindcss -o ./app/app.css",
"dev": "concurrently \"yarn dev:css\" \"node -r dotenv/config node_modules/.bin/remix dev\"",
"dev:css": "tailwindcss -o ./app/styles/app.css --watch",
"contentful-typescript-codegen": "node -r dotenv/config node_modules/.bin/contentful-typescript-codegen --output app/@types/generated/contentful.d.ts",
"postinstall": "remix setup node",
"start": "remix-serve build"
},
"dependencies": {
"@remix-run/react": "^1.0.6",
"@remix-run/serve": "^1.0.6",
"classnames": "2.3.1",
"date-fns": "^2.27.0",
"dotenv": "10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.3",
"react-syntax-highlighter": "15.4.5",
"rehype-raw": "5.1.0",
"remix": "^1.0.6",
"unist-util-position": "3.1.0"
},
"devDependencies": {
"@contentful/rich-text-types": "15.9.1",
"@remix-run/dev": "^1.0.6",
"@tailwindcss/typography": "^0.5.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-syntax-highlighter": "13.5.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"concurrently": "6.4.0",
"contentful": "9.1.5",
"contentful-management": "7.45.7",
"contentful-typescript-codegen": "3.2.3",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.27.1",
"prettier": "2.5.1",
"tailwindcss": "3.0.1",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}