-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "timezone-buddy",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --base=/app --https --host --mode development",
"build": "tsc && vite build --base=/app --mode development",
"build:prod": "tsc && vite build --base=/app --mode production",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"cm": "cz"
},
"lint-staged": {
"*.{css,md,json,html}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint",
"eslint --fix"
]
},
"dependencies": {
"@azure/msal-browser": "^2.34.0",
"@azure/msal-react": "^1.5.4",
"install": "^0.13.0",
"npm": "^9.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.15.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"postcss": "^8.4.21",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "^0.2.6",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-mkcert": "^1.13.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}