-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "photo-site",
"private": true,
"version": "0.0.0",
"description": "A fullstack example of a pnpm workspace.",
"scripts": {
"dev": "pnpm dev:compose && pnpm --stream -r run dev",
"dev:compose": "docker-compose up",
"lint": "tsc --noEmit && pnpm eslint . --fix",
"eslint": "eslint --ext .mjs,.cjs,.js,.jsx,.ts,.tsx,.mts",
"prepare": "husky install",
"build": "tsc --build",
"test:unit": "export NODE_ENV=test && pnpm --filter db run test:setup && pnpm --filter db run test",
"test:integration": "export NODE_ENV=test && pnpm --filter server run test && pnpm --filter client run test",
"test:e2e": "export NODE_ENV=test && pnpm build && pnpm --filter db run test:setup && start-server-and-test 'pnpm -r run start:e2e' '3010' 'pnpm --filter e2e run cy:run'"
},
"type": "module",
"author": "[email protected]",
"dependencies": {
"husky": "^8.0.3"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@types/jest": "^29.5.4",
"@types/stylelint": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-sql": "^2.4.4",
"jest": "^29.6.4",
"jest-github-reporter": "^1.1.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.3",
"prettier-plugin-sql": "^0.15.1",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"pnpm": {
"patchedDependencies": {
"@remix-run/[email protected]": "patches/@[email protected]"
},
"overrides": {
"@apollo/client": "^3.8.1"
}
}
}