-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.51 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,
"name": "remix-template",
"description": "",
"license": "",
"scripts": {
"clean": "rimraf ./node_modules/.cache ./server/dist ./build ./public/build \"./app/styles/**/*.css\"",
"prebuild": "yarn run clean && echo All clean ✨",
"build:css": "postcss styles/**/*.css --base styles --dir app/styles --env production",
"build:remix": "cross-env NODE_ENV=production dotenv -e .env remix build",
"build": "yarn run build:css && yarn run build:remix",
"start": "remix-serve build",
"dev": "concurrently \"yarn run dev:css\" \"remix dev\"",
"dev:css": "postcss styles --base styles --dir app/styles -w",
"postinstall": "remix setup node",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|gql|graphql|mdx|vue)\"",
"typecheck": "tsc -b",
"validate": "concurrently \"yarn run lint\" \"yarn run typecheck\" \"yarn run build\""
},
"dependencies": {
"@headlessui/react": "1.6.6",
"@heroicons/react": "1.0.6",
"@remix-run/react": "1.6.7",
"@remix-run/serve": "1.6.7",
"@remix-run/vercel": "1.6.7",
"@remix-validated-form/with-zod": "2.0.1",
"@tailwindcss/forms": "0.5.2",
"cross-env": "7.0.3",
"dotenv": "16.0.1",
"esbuild": "0.14.51",
"history": "5.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remix": "1.6.7",
"remix-auth": "3.2.2",
"remix-auth-form": "1.1.2",
"remix-validated-form": "4.5.5",
"zod": "3.18.0",
"zod-form-data": "1.2.1"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@remix-run/dev": "1.6.7",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "10.4.8",
"aws-cdk": "2.34.2",
"aws-cdk-lib": "2.34.2",
"babel-loader": "8.2.5",
"chromatic": "6.7.2",
"concurrently": "7.3.0",
"constructs": "10.1.63",
"dotenv-cli": "6.0.0",
"esbuild-register": "3.3.3",
"eslint": "8.21.0",
"eslint-config-kentcdodds": "20.3.1",
"jest": "28.1.3",
"postcss": "8.4.14",
"postcss-cli": "10.0.0",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"rimraf": "3.0.2",
"tailwindcss": "3.1.7",
"typescript": "4.7.4",
"yarn-upgrade-all": "0.7.1"
},
"eslintIgnore": [
"node_modules",
"coverage",
"server-build",
"build",
"public/build",
"*.ignored/",
"*.ignored.*"
],
"engines": {
"node": ">=14"
},
"sideEffects": false
}