-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.61 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
{
"name": "pizzaria_toffanetto",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Éverton Toffanetto",
"description": "Este projeto tem o objetivo de agilizar o processo do pedido de pizzas, proporcionando uma experiência melhor para o cliente.",
"repository": "https://github.com/everton-dgn/pizzaria_toffanetto",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build --no-lint",
"lint": "eslint --cache src --ext ts,tsx --max-warnings=0",
"lint:fix": "eslint --cache --fix src --ext ts,tsx",
"next:lint": "next lint",
"format": "prettier --cache --write src",
"check:format": "prettier --cache --check src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:c": "vitest run --coverage",
"test:w": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:ci": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:codegen": "playwright codegen http://localhost:3000",
"check:update": "yarn upgrade-interactive --latest",
"generate": "yarn plop --plopfile generator/plopFile.mjs",
"prepare": "node scripts/create-husky-files.mjs && husky install"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.2",
"@legendapp/state": "^2.1.4",
"axios": "^1.6.5",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-icons": "^5.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"dotenv": "^16.3.1",
"@commitlint/cli": "^18.4.4",
"eleganceui-tailwind-utilities": "^3.1.1",
"@commitlint/config-conventional": "^18.4.4",
"@playwright/test": "^1.41.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jsdom-global": "^3.0.6",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.2.1",
"autoprefixer": "^10.4.17",
"clsx": "^2.1.0",
"cssnano": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-playwright": "^0.22.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-tailwindcss": "^3.14.2",
"eslint-plugin-testing-library": "^6.1.0",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"jsdom-global": "^3.0.2",
"lint-staged": "^15.2.0",
"plop": "^4.0.1",
"postcss": "^8.4.35",
"postcss-import": "^16.0.1",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"sharp": "^0.33.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1",
"webpack": "^5.89.0"
}
}