-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s \"build:*\"",
"build:css": "postcss styles --base styles --dir app/styles --env production",
"build:remix": "remix build",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "postcss styles --base styles --dir app/styles -w",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -i ./styles/app.css -o ./app/app.css",
"start": "remix-serve build"
},
"dependencies": {
"@notionhq/client": "^2.1.0",
"@remix-run/node": "^1.6.5",
"@remix-run/react": "^1.6.5",
"@remix-run/serve": "^1.6.5",
"clsx": "^1.2.1",
"lru-cache": "^7.13.1",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"react-syntax-highlighter": "^15.5.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.6.5",
"@remix-run/eslint-config": "^1.6.5",
"@tailwindcss/typography": "^0.5.4",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"autoprefixer": "^10.4.7",
"concurrently": "^7.3.0",
"eslint": "^8.20.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-cli": "^10.0.0",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}