-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.13 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
{
"name": "equinox-solstice-calc",
"version": "0.0.1",
"private": "true",
"keywords": [
"react",
"typescript",
"vite"
],
"license": "MIT",
"author": {
"name": "Rafael Lüder",
"url": "https://github.com/rlueder"
},
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"prepare": "husky install",
"release": "standard-version",
"serve": "vite preview",
"test": "jest"
},
"dependencies": {
"date-fns": "^2.28.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet-async": "^1.2.2",
"react-hook-form": "^7.30.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@testing-library/user-event": "^14.1.0",
"@types/react": "^18.0.2",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-react": "^1.1.3",
"babel-jest": "^27.4.5",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.4",
"prettier": "^2.6.2",
"sass": "^1.50.0",
"standard-version": "^9.3.2",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.5.4",
"vite": "^2.7.10"
},
"lint-staged": {
"src/**/*.{css,scss}": [
"stylelint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"engines": {
"node": "^16.x"
},
"volta": {
"node": "16.13.1"
}
}