generated from franklinjavier/remix-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.38 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
77
78
79
80
81
{
"private": true,
"sideEffects": false,
"author": {
"name": "Franklin Javier",
"email": "[email protected]"
},
"scripts": {
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -m -i ./app/components/theme/global.css -o ./app/tailwind.css",
"start": "remix-serve build",
"lint": "eslint --cache --ignore-path .gitignore .",
"lint:fix": "eslint --cache --ignore-path .gitignore --fix .",
"lint:ci": "eslint --ignore-path .gitignore .",
"format": "prettier --write .",
"type-check": "tsc",
"updatedeps": "yarn --latest upgrade-interactive",
"prepare": "husky install",
"test": "jest --forceExit --no-cache --maxWorkers=25%",
"test:dev": "jest --watchAll"
},
"dependencies": {
"@remix-run/node": "^1.8.0",
"@remix-run/react": "^1.8.0",
"@remix-run/serve": "^1.8.0",
"@remix-run/vercel": "^1.8.0",
"clsx": "1.2.1",
"hast-util-to-string": "^2.0.0",
"isbot": "^3.6.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-document": "^6.1.0",
"rehype-format": "^4.0.1",
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"rehype-stringify": "^9.0.3",
"remark-autolink-headings": "^7.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-slug": "^7.0.1",
"unified": "^10.1.2"
},
"devDependencies": {
"@remix-run/dev": "^1.8.0",
"@remix-run/eslint-config": "^1.8.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"git-cz": "^4.9.0",
"husky": "^8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"tailwindcss": "^3.2.4",
"ts-jest": "29.0.3",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=16"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}