-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.68 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "azordev-frontend-react-vite",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"spelling": "cspell lint 'src/**/*.{js,jsx,md}'",
"spelling:ci": "cspell --no-must-find-files",
"stylelint:ci": "stylelint --config .stylelintrc.json",
"eslint:ci": "eslint --color --cache -f table",
"stylelint": "stylelint --config .stylelintrc.json './**/*.styled.jsx'",
"eslint": "eslint src --color --cache -f table",
"lint:js:fix": "eslint src --fix",
"prettier": "prettier src --write --config ./.prettierrc.js",
"prettier:ci": "prettier --write --config ./.prettierrc.js",
"test": "jest --passWithNoTests",
"test:c": "jest --coverage --watchAll=false --ci --passWithNoTests",
"test:cw": "jest --coverage --watchAll",
"check": "npm run stylelint && npm run eslint && npm run prettier && npm run test:c",
"lefthook": "lefthook run lint"
},
"dependencies": {
"@emotion/styled": "~11.8.1",
"react": "~17.0.2",
"react-dom": "~17.0.2",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@arkweid/lefthook": "~0.7.7",
"@babel/preset-env": "~7.16.11",
"@babel/preset-react": "~7.16.7",
"@babel/preset-typescript": "~7.16.7",
"@commitlint/cli": "~16.2.1",
"@commitlint/config-conventional": "~16.2.1",
"@emotion/react": "~11.8.1",
"@testing-library/jest-dom": "~5.16.2",
"@testing-library/react": "~12.1.3",
"@testing-library/user-event": "~13.5.0",
"@types/react": "~17.0.33",
"@types/react-dom": "~17.0.10",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitejs/plugin-react": "~1.0.7",
"cspell": "~5.18.5",
"css-maid": "~2.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^16.0.3",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "~5.2.0",
"eslint-plugin-react": "~7.28.0",
"eslint-plugin-react-hooks": "~4.3.0",
"identity-obj-proxy": "~3.0.0",
"jest": "~27.5.1",
"prettier": "~2.5.1",
"stylelint": "~14.5.2",
"stylelint-config-standard": "~25.0.0",
"stylelint-processor-styled-components": "~1.10.0",
"stylelint-webpack-plugin": "~3.1.1",
"typescript": "~4.5.4",
"vite": "~2.8.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Azordev/frontend-template/"
},
"bugs": {
"url": "https://github.com/Azordev/frontend-template/issues"
},
"author": {
"name": "Israel Laguan",
"email": "[email protected]",
"url": "https://github.com/Israel-Laguan"
},
"contributors": [
{
"name": "Victor Peña",
"email": "[email protected]",
"url": "https://github.com/Katsu08"
},
{
"name": "Emmanuel Azócar",
"email": "[email protected]",
"url": "https://github.com/e-azocar"
},
{
"name": "Angelica Molina",
"email": "[email protected]",
"url": "https://github.com/angelik0828"
}
]
}