This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "remix-tailwind-starter",
"version": "1.0.0",
"description": "A Remix.run starter with tailwind 2 configured",
"keywords": [
"remix.run",
"tailwind",
"postcss"
],
"repository": "mcansh/remix-tailwind-starter",
"license": "MIT",
"author": "Logan McAnsh <[email protected]> (https://mcan.sh)",
"sideEffects": false,
"main": "index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "run-s build:*",
"build:css": "postcss styles --base styles --dir app/styles --env production",
"build:remix": "remix build",
"clean": "del .cache build public/build app/styles",
"dev": "pm2-dev pm2.config.js",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx . --fix",
"prepare": "husky install .config/husky",
"typecheck": "tsc --project app"
},
"dependencies": {
"@remix-run/node": "0.17.5",
"@remix-run/react": "0.17.5",
"@remix-run/vercel": "0.17.5",
"cross-env": "7.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router": "6.0.0-beta.0",
"react-router-dom": "6.0.0-beta.0",
"remix": "0.17.5"
},
"devDependencies": {
"@mcansh/eslint-config": "3.1.0",
"@remix-run/dev": "0.17.5",
"@types/node": "16.6.1",
"@types/react": "17.0.18",
"@types/react-dom": "17.0.9",
"autoprefixer": "10.3.1",
"del-cli": "4.0.1",
"eslint": "7.32.0",
"glob": "7.1.7",
"husky": "7.0.1",
"lint-staged": "11.1.2",
"npm-run-all": "4.1.5",
"pm2": "5.1.0",
"postcss-cli": "8.3.1",
"prettier": "2.3.2",
"shell-quote": "1.7.2",
"tailwindcss": "2.2.7",
"ts-node": "10.2.0",
"typescript": "4.3.5"
},
"engines": {
"node": ">=12"
}
}