-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.12 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": "bdd-wizard",
"private": true,
"sideEffects": false,
"packageManager": "[email protected]",
"license": "MIT",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "run-s build:*",
"build:remix": "remix build --sourcemap",
"build:server": "tsx ./other/build-server.ts",
"dev": "remix dev -c \"node ./server/dev-server.js\" --no-restart",
"deploy": "fly deploy --remote-only",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production node .",
"start:mocks": "cross-env NODE_ENV=production MOCKS=true tsx .",
"test": "vitest",
"test:e2e": "npm run test:e2e:dev --silent",
"test:e2e:dev": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:gen": "playwright codegen",
"pretest:e2e:run": "pnpm build",
"test:e2e:run": "cross-env CI=true playwright test",
"test:e2e:install": "playwright install --with-deps chromium",
"typecheck": "tsc",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run"
},
"prettier": {},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/playwright-report",
"/server-build"
],
"dependencies": {
"@remix-run/express": "^2.1.0",
"@remix-run/node": "^2.1.0",
"@remix-run/react": "^2.1.0",
"@remix-run/server-runtime": "^2.1.0",
"address": "^2.0.1",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"close-with-grace": "^1.2.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"express": "^4.18.2",
"get-port": "^7.0.0",
"helmet": "^7.0.0",
"isbot": "^3.7.0",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@flydotio/dockerfile": "^0.4.10",
"@playwright/test": "^1.39.0",
"@remix-run/dev": "^2.1.0",
"@remix-run/eslint-config": "^2.1.0",
"@remix-run/serve": "^2.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/compression": "^1.7.4",
"@types/eslint": "^8.44.6",
"@types/express": "^4.17.20",
"@types/fs-extra": "^11.0.3",
"@types/glob": "^8.1.0",
"@types/morgan": "^1.9.7",
"@types/node": "^20.8.7",
"@types/react": "^18.2.30",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^10.4.16",
"c8": "^8.0.1",
"esbuild": "^0.19.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"start-server-and-test": "^2.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
},
"engines": {
"node": "18"
}
}