forked from contrastio/recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
{
"name": "recorder",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"deploy": "s3-spa-upload --cache-control-mapping cache-control.json --delete dist",
"preview": "vite preview",
"format": "prettier . --cache",
"format:fix": "yarn format --write",
"format:check": "yarn format --check",
"lint": "eslint . --cache --max-warnings 0",
"lint:fix": "yarn lint --fix",
"lint:check": "yarn lint",
"lint:css": "stylelint '**/*.css' --cache --max-warnings 0",
"lint:css:fix": "yarn lint:css --fix",
"lint:css:check": "yarn lint:css",
"type:check": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.1",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/dom-mediacapture-transform": "^0.1.6",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.26",
"postcss-nesting": "^12.0.0",
"prettier": "^3.0.0",
"s3-spa-upload": "^2.1.5",
"stylelint": "^15.10.2",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.3",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1",
"vite": "^4.4.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.css": "stylelint --cache --fix --max-warnings 0",
"*.{js,jsx,ts,tsx,css,htm,html,md}": "prettier --cache --write"
}
}