-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.2 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
{
"name": "gooditworks_base_frontend",
"version": "1.1.0",
"description": "Gooditworks base frontend project",
"repository": "https://github.com/gooditworks/base-frontend",
"license": "MIT",
"author": "Max Eliseev <[email protected]>",
"scripts": {
"build": "next build",
"commit": "git add . && cz",
"dev": "next dev",
"postinstall": "sh ./scripts/add_base_remote.sh",
"lint:base": "sh ./scripts/check_base_update.sh",
"lint:next": "next lint",
"lint:typecheck": "tsc --noEmit --project tsconfig.json",
"playwright:inspect": "PWDEBUG=1 playwright test",
"playwright:install": "playwright install",
"playwright:test": "playwright test",
"playwright:update-snapshots": "playwright test --update-snapshots",
"release": "standard-version",
"start": "next build && next start",
"style:packagesort": "sort-package-json",
"test:e2e": "npm run playwright:test",
"test:unit": "jest",
"base:check": "sh ./scripts/check_base_update.sh",
"base:update": "sh ./scripts/update_base.sh",
"preinstall": "npx only-allow pnpm",
"lint": "concurrently -c green \"pnpm:lint:*\"",
"lint:ts": "eslint --ext .ts,.tsx .",
"test": "concurrently -c green \"pnpm:test:*\""
},
"dependencies": {
"@next/bundle-analyzer": "^13.0.5",
"@next/font": "^13.2.1",
"@sentry/nextjs": "^7.38.0",
"@tanstack/react-query": "^4.16.1",
"@trpc/client": "^10.1.0",
"@trpc/next": "^10.1.0",
"@trpc/react-query": "^10.1.0",
"@trpc/server": "^10.1.0",
"classnames": "2.3.2",
"dotenv": "16.0.3",
"next": "13.2.4",
"next-axiom": "0.17.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.31.3",
"zod": "^3.19.1"
},
"devDependencies": {
"@commitlint/cli": "17.5.0",
"@commitlint/config-conventional": "17.4.4",
"@commitlint/lint": "^17.3.0",
"@evilmartians/lefthook": "^1.2.1",
"@types/jest": "29.5.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"@playwright/test": "1.32.0",
"@testing-library/react": "14.0.0",
"@types/react": "18.0.28",
"autoprefixer": "10.4.14",
"commitizen": "4.3.0",
"commitlint-plugin-function-rules": "1.7.1",
"concurrently": "7.6.0",
"cssnano": "5.1.15",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.36.0",
"enhanced-resolve": "5.12.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "13.2.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jest-environment-jsdom": "29.5.0",
"jest-junit": "15.0.0",
"prettier": "2.8.6",
"postcss": "8.4.21",
"postcss-flexbugs-fixes": "5.0.2",
"sort-package-json": "2.4.1",
"standard-version": "9.5.0",
"tailwindcss": "3.2.7",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "5.0.2"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}