-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.46 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
{
"name": "react-web",
"author": {
"name": "Ramoun",
"email": "contact@omarramoun.com",
"url": "https://omarramoun.com"
},
"description": "Starter for React Projects",
"repository": "https://github.com/OmarRamoun/REACT-WEB",
"private": true,
"main": "dist/index.js",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.ts?(x)\" --ext .js,.jsx,.ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint --fix --max-warnings=0 . --ext=.ts,.tsx",
"format": "prettier --write './**/*.{ts,tsx,css,md,json}' --config ./.prettierrc",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"tsc:check": "tsc --noEmit",
"gen:icons": "rollup -c",
"prepare": "husky install",
"type-check": "tsc -p tsconfig.json --noEmit",
"pre-commit": "lint-staged"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.2.0",
"framer-motion": "^10.12.4",
"lodash": "4.17.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-responsive": "^9.0.2",
"styled-components": "^5.3.6",
"styled-system": "^5.1.5",
"styled-typography": "^1.0.3",
"tailwindcss": "1.1.2",
"typescript": "4.9.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-image": "^2.0.0",
"@svgr/cli": "^5.1.0",
"@svgr/rollup": "^6.5.1",
"@types/lodash": "4.14.165",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-responsive": "^8.0.5",
"@types/styled-components": "^5.1.26",
"@types/styled-system": "^5.1.15",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^2.0.7",
"browser-image-compression": "^2.0.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "13.0.7",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"module-alias": "^2.2.2",
"prettier": "^2.8.1",
"prettier-eslint": "^15.0.1",
"react-native-svg": "^11.0.1",
"rollup": "^1.27.13",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-typescript2": "^0.25.3",
"vite": "^4.3.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
}
}