forked from remix-run/indie-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.01 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 4.01 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "rockabilly-stack-template",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"postinstall": "remix setup node",
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"build:server": "esbuild --platform=node --format=cjs --bundle ./server.ts --outdir=build",
"build:background": "esbuild --platform=node --format=cjs app/background-processor.ts --bundle --outdir=build ",
"clean": "rm -rf build",
"dev": "run-p dev:*",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:background": "cross-env NODE_ENV=development npm run build:background -- --watch",
"dev:css": "cross-env NODE_ENV=development npm run generate:css -- --watch",
"dev:serve": "cross-env NODE_ENV=development run-s build:server servedev build:server -- --watch",
"servedev": "node --inspect --require ./node_modules/dotenv/config --require ./mocks ./build/server.js",
"docker": "docker-compose up -d",
"docker:kill": "docker kill $(docker container ls -q)",
"format": "prettier --write .",
"generate:css": "tailwindcss -o ./app/styles/tailwind.css",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "prisma migrate dev && prisma db seed",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"start:mocks": "cross-env NODE_ENV=production node --require ./mocks --require dotenv/config ./build/server.js",
"test": "vitest",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start:mocks http://localhost:8811 \"cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"db:migrate": "prisma migrate dev",
"db:migrate-raw": "prisma migrate dev --create-only"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"useTabs": true,
"semi": false,
"trailingComma": "all",
"arrowParens": "avoid",
"overrides": [
{
"files": "*.yaml",
"options": {
"trailingComma": "es5"
}
}
]
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@prisma/client": "^4.16.2",
"@remix-run/express": "^1.19.3",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"@remix-run/server-runtime": "^1.19.3",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"prettier-plugin-prisma": "^3.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^6.6.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@remix-run/dev": "^1.19.3",
"@remix-run/eslint-config": "^1.19.3",
"@testing-library/cypress": "^9.0.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.44.2",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.5",
"@types/node": "^20.5.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
"binode": "^1.0.5",
"c8": "^8.0.1",
"cypress": "^12.17.4",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"happy-dom": "^10.1.0",
"msw": "^1.2.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.28",
"prettier": "3.0.2",
"prettier-plugin-prisma": "^3.13.0",
"prettier-plugin-tailwindcss": "^0.5.3",
"prisma": "^4.16.2",
"rmx-cli": "^0.4.13",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.2"
},
"engines": {
"node": ">=14"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}