-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"private": true,
"name": "seth.bertalotto.net",
"description": "Website for seth.bertalotto.net",
"license": "",
"repository": {
"type": "git",
"url": "[email protected]:redonkulus/seth.bertalotto.net.git"
},
"scripts": {
"build": "npm run build:css && npm run build:remix",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "concurrently npm:dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev --port 8002",
"format": "prettier --write .",
"generate:css": "npx tailwindcss -i ./app/styles.css -o ./build/tailwind.css",
"lint": "concurrently npm:lint:*",
"lint:eslint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"lint:prettier": "prettier --check .",
"start": "remix-serve build"
},
"dependencies": {
"@remix-run/node": "^2.15.2",
"@remix-run/react": "^2.15.2",
"@remix-run/serve": "^2.15.2",
"@remix-run/server-runtime": "^2.15.2",
"@types/marked": "^6.0.0",
"classnames": "^2.5.1",
"front-matter": "^4.0.2",
"marked": "^15.0.4",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@remix-run/dev": "^2.15.2",
"@remix-run/eslint-config": "^2.15.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"concurrently": "^9.1.0",
"eslint": "^8.57.1",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"engines": {
"node": "18.x"
},
"sideEffects": false,
"eslintConfig": {
"env": {
"es2022": true
},
"extends": [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node"
],
"parserOptions": {
"sourceType": "module"
}
},
"eslintIgnore": [
"/api",
"/node_modules",
"/build",
"/public/build"
],
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
}
}