generated from rogerio-romao/js-react-frontend-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.14 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
{
"name": "ts-react-frontend-starter",
"version": "1.0.0",
"description": "My personal template for starting frontend project in Typescript/React",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite --open",
"dev:ci": "vite",
"build": "tsc && vite build",
"preview": "vite preview --open",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"lint:css": "stylelint \"**/*.{css, scss}\"",
"lint:css:fix": "stylelint \"**/*.{css, scss}\" --fix",
"test": "vitest",
"test:ui": "vitest --ui --coverage",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:codegen": "playwright codegen",
"precommit": "pnpm run lint && pnpm run lint:css && pnpm run test:ci",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerio-romao/ts-react-frontend-starter.git"
},
"author": "Rogerio Romao",
"license": "ISC",
"bugs": {
"url": "https://github.com/rogerio-romao/ts-react-frontend-starter/issues"
},
"homepage": "https://github.com/rogerio-romao/ts-react-frontend-starter#readme",
"browserslist": [
"fully supports es6-module"
],
"devDependencies": {
"@isnotdefined/stylelint-plugin": "^5.0.0",
"@playwright/test": "^1.41.1",
"@types/node": "^20.11.14",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"eslint": "^8.56.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.25.0",
"eslint-plugin-unicorn": "^52.0.0",
"husky": "^9.0.7",
"msw": "^2.1.5",
"stylelint": "^16.0.0",
"stylelint-a11y": "^1.2.3",
"stylelint-css-modules": "^1.2.2",
"stylelint-css-modules-no-global-scoped-selector": "^1.0.2",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-group-selectors": "^1.0.10",
"stylelint-high-performance-animation": "^1.10.0",
"stylelint-no-unused-selectors": "^1.0.40",
"stylelint-plugin-defensive-css": "^1.0.2",
"stylelint-plugin-logical-css": "^1.0.0",
"stylelint-rem-over-px": "^1.0.1",
"stylelint-selector-tag-no-without-class": "^3.0.0",
"stylelint-use-nesting": "^5.0.0",
"stylelint-value-no-exposed-custom-properties": "^2.3.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}