-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.31 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "mision-arbol",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"deploy": "pm2 start yarn --interpreter bash --name mision-arbol -- start",
"clean": "rimraf ./node_modules/.cache ./server/dist ./build ./public/build \"./app/styles/**/*.css\"",
"build": "run-s build:*",
"build:css": "postcss styles/**/*.css --base styles --dir app/styles",
"build:remix": "remix build",
"dev": "cross-env NODE_ENV=development remix dev",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma migrate dev && prisma db seed",
"start": "remix-serve ./build/index.js",
"start:mocks": "binode --require ./mocks -- @remix-run/serve:remix-serve build",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 ",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811",
"typecheck": "tsc -b && tsc -b",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^1.0.6",
"@next-boost/hybrid-disk-cache": "^0.3.0",
"@prisma/client": "^5.6.0",
"@remix-run/node": "^2.3.1",
"@remix-run/react": "^2.3.1",
"@remix-run/serve": "^2.3.1",
"@remix-run/server-runtime": "^2.3.1",
"@remix-run/v1-meta": "^0.1.3",
"@remix-run/v1-route-convention": "^0.1.4",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"bcryptjs": "^2.4.3",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"error-stack-parser": "^2.1.4",
"feed": "^4.2.2",
"framer-motion": "^10.16.5",
"isbot": "^3.7.1",
"marked": "^4.2.5",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-share": "^5.0.2",
"remix-seo": "^0.1.0",
"remix-utils": "^7.3.0",
"rimraf": "^5.0.5",
"spin-delay": "^1.2.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@remix-run/dev": "^2.3.1",
"@remix-run/eslint-config": "^2.3.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"binode": "^1.0.5",
"c8": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"happy-dom": "^12.10.3",
"msw": "^2.0.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"prettier": "3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"prisma": "^5.6.0",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"vite": "^5.0.3",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "node --trace-warnings prisma/seed.js"
},
"version": "0.0.0"
}