forked from dev-xo/remix-saas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
{
"name": "stripe-stack-dev",
"author": "https://github.com/dev-xo",
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix dev",
"start": "remix-serve build",
"format": "prettier --write .",
"typecheck": "tsc -b",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test:e2e:dev": "playwright test",
"test:e2e:run": "cross-env CI=true playwright test",
"test:e2e:install": "npx playwright install chromium --with-deps",
"pretest:e2e:run": "npm run build",
"validate": "npm run lint && npm run typecheck && npm run test:e2e:run",
"seed:build": "tsc --project ./tsconfig.seed.json && tsc-alias -p ./tsconfig.seed.json"
},
"dependencies": {
"@prisma/client": "^4.16.2",
"@remix-run/node": "^1.18.1",
"@remix-run/react": "^1.18.1",
"@remix-run/serve": "^1.18.1",
"autoprefixer": "^10.4.14",
"dayjs": "^1.11.9",
"isbot": "^3.6.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.5.0",
"remix-auth-otp": "^2.3.0",
"remix-auth-socials": "^2.0.5",
"remix-utils": "^6.6.0",
"stripe": "^11.18.0"
},
"devDependencies": {
"@playwright/test": "^1.36.1",
"@remix-run/dev": "^1.18.1",
"@remix-run/eslint-config": "^1.18.1",
"@types/eslint": "^8.44.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prisma": "^4.16.2",
"remix-flat-routes": "^0.5.10",
"stripe-event-types": "^2.4.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=16"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
}
}