-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "departurely",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest --watch",
"test-ci": "jest --watch=false --browsers=ChromeHeadless",
"test-e2e": "playwright test e2e --config=e2e/playwright.config.ts"
},
"dependencies": {
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"axios": "^1.3.4",
"next": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-uuid": "^2.0.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@commitlint/config-conventional": "^17.4.4",
"@next/eslint-plugin-next": "^13.2.1",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-testing-library": "^5.10.2",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"@playwright/test": "^1.31.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10.4.13",
"dotenv": "^16.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"prettier": "^2.8.4",
"next-router-mock": "^0.9.2",
"node-mocks-http": "^1.12.1",
"playwright": "^1.31.1"
}
}