-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.39 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
{
"name": "linkdin-clone",
"version": "0.1.0",
"private": true,
"dependencies": {
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@radix-ui/react-hover-card": "^1.0.0",
"@radix-ui/react-popover": "^1.0.0",
"@radix-ui/react-tabs": "^1.0.0",
"firebase": "^9.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.0.3",
"react-router-dom": "^6.4.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"prepare": "husky install",
"pre-commit": "lint-staged",
"cz": "exec < /dev/tty && git cz --hook || true",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\"",
"stylelint": "stylelint \"src/**/*.{css,scss}\"",
"lint:fix": "yarn lint --fix",
"lint:check": "yarn lint --quiet",
"stylelint:fix": "yarn stylelint --fix",
"stylelint:check": "yarn stylelint --quiet",
"prettier:base": "prettier --parser typescript --single-quote --write",
"prettier:check": "yarn prettier:base --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "yarn prettier:base \"src/**/*.{ts,tsx}\"",
"validation": "npx concurrently yarn:type-check yarn:lint:check yarn:stylelint:check yarn:prettier:check",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/node-logger": "^6.5.12",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^29.0.3",
"@types/node": "^16.7.13",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"babel-plugin-named-exports-order": "^0.0.2",
"commitizen": "^4.2.5",
"concurrently": "^7.4.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react-app-rewire-alias": "^1.1.7",
"react-app-rewired": "^2.2.1",
"sass": "^1.54.9",
"source-map-explorer": "^2.5.2",
"stylelint": "^14.12.0",
"stylelint-color-format": "^1.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"stylelint-semantic-groups": "^1.1.4",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.4.2",
"webpack": "^5.74.0"
}
}