-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.23 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
{
"name": "airwalk-resourcing",
"version": "0.0.0-semantic-release",
"private": true,
"scripts": {
"dev:spotlight": "spotlight-sidecar",
"dev:next": "next dev",
"dev": "run-p dev:*",
"dev-colab": "node server.js",
"build": "next build",
"build-with-migrate": "npm run db:migrate && next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"clean": "rimraf .next .swc out coverage",
"lint": "next lint",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write --ignore-path .gitignore",
"check-types": "tsc --noEmit --pretty",
"test": "jest",
"commit": "cz",
"db:generate": "drizzle-kit generate:sqlite",
"db:migrate": "dotenv -c -- tsx ./scripts/dbMigrate.ts",
"db:studio": "dotenv -c -- drizzle-kit studio",
"test:e2e": "playwright test",
"prepare": "husky",
"export": "next build && next export"
},
"dependencies": {
"@emotion/react": "^11.12.0",
"@emotion/styled": "^11.12.0",
"@fontsource/heebo": "^5.0.22",
"@fontsource/roboto": "^5.0.13",
"@fontsource/roboto-mono": "^5.0.17",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.16.4",
"@mui/utils": "^5.15.14",
"@spotlightjs/spotlight": "^1.2.16",
"autoprefixer": "^9.8.8",
"cssnano": "^6.1.2",
"formidable-serverless": "^1.1.1",
"ioredis": "^5.3.2",
"next": "^14.2.4",
"pino": "^8.19.0",
"pino-pretty": "^11.2.1",
"postcss": "^8.4.38",
"react": "^18.3.1",
"tailwindcss": "^3.4.3",
"ws": "^8.18.0",
"xml2js": "^0.6.2",
"y-redis": "^1.0.3",
"y-websocket": "^2.0.3",
"yjs": "^13.6.18"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/cz-commitlint": "^19.2.0",
"@playwright/test": "^1.42.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"dotenv-cli": "^7.4.1",
"drizzle-kit": "^0.20.14",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-dom": "^5.2.0",
"@types/node": "^20.12.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-playwright": "^1.5.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fail-on-console": "^3.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18.14.0"
},
"msw": {
"workerDirectory": [
"public"
]
}
}