-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
115 lines (115 loc) · 4.38 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
105
106
107
108
109
110
111
112
113
114
115
{
"private": false,
"name": "kelas-rumah-berbagi",
"description": "Kelas Rumah Berbagi",
"license": "MIT",
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
},
"scripts": {
"build": "cross-env NODE_ENV=production npm run build:css && remix build",
"build:css": "tailwindcss --minify -o ./app/tailwind.css",
"build:remix": "cross-env NODE_ENV=production remix build --sourcemap",
"dev": "cross-env DATABASE_URL=file:./dev.db NODE_ENV=development prisma generate --schema=./prisma/schema.sqlite.prisma && concurrently -k \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -o ./app/tailwind.css --watch",
"format": "prettier --write \"./**/*.{ts,tsx,js,jsx,yml,yaml,md}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx,yml,yaml}\"",
"lint:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx,yml,yaml}\"",
"prepare": "husky install",
"start": "remix-serve build",
"prestart:e2e": "DATABASE_URL=file:./test.db prisma migrate reset --force --schema=./prisma/schema.sqlite.prisma && npm run build:css",
"start:e2e": "cross-env RUNNING_E2E=true DATABASE_URL=file:./test.db remix dev",
"test": "is-ci-cli test:coverage test:watch",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"postinstall": "remix setup node",
"test:e2e": "playwright test",
"test:e2e:dev": "cross-env RUNNING_E2E=true start-server-and-test dev http-get://localhost:3000/ test:e2e",
"test:e2e:run": "cross-env RUNNING_E2E=true DATABASE_URL=file:./test.db start-server-and-test start:e2e http-get://localhost:3000/ test:e2e",
"type-check": "tsc --noEmit",
"setup": "npm install && prisma migrate reset --force --schema=./prisma/schema.sqlite.prisma && npm run test:e2e:run",
"presetup": "npx playwright install-deps"
},
"dependencies": {
"@headlessui/react": "1.4.2",
"@heroicons/react": "1.0.5",
"@prisma/client": "3.10.0",
"@reach/auto-id": "0.16.0",
"@remix-run/react": "1.2.2",
"@remix-run/vercel": "1.2.2",
"@types/validator": "13.7.0",
"burner-email-providers": "1.0.67",
"clsx": "1.1.1",
"cross-env": "7.0.3",
"dotenv": "10.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"remix": "1.2.2",
"remix-auth": "3.2.1",
"remix-auth-email-link": "1.2.0",
"validator": "13.7.0"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/eslint-plugin": "7.16.5",
"@babel/plugin-transform-runtime": "7.16.7",
"@babel/preset-env": "7.16.7",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.16.7",
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@jackfranklin/test-data-bot": "1.4.0",
"@playwright-testing-library/test": "4.0.1",
"@playwright/test": "1.17.1",
"@remix-run/dev": "1.2.2",
"@remix-run/serve": "1.2.2",
"@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/forms": "0.4.0",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.0",
"@types/react": "17.0.24",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"autoprefixer": "10.4.2",
"babel-jest": "27.4.6",
"concurrently": "6.4.0",
"esbuild": "0.14.8",
"esbuild-register": "3.2.0",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-playwright": "0.7.1",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-yml": "0.12.0",
"husky": "7.0.4",
"is-ci-cli": "2.2.0",
"jest": "27.4.5",
"jest-watch-select-projects": "2.0.0",
"jest-watch-typeahead": "1.0.0",
"lint-staged": "12.1.3",
"msw": "0.36.3",
"postcss": "8.4.7",
"prettier": "2.5.1",
"prisma": "3.10.0",
"react-router-dom": "6.2.1",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.0.23",
"typescript": "4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"lint-staged": {
"*.{js,jsx,ts,tsx}": "jest --findRelatedTests",
"*.{js,jsx,ts,tsx,yml,yaml}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}