-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.67 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
{
"name": "react-calc",
"private": true,
"version": "3.0.0",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:scripts": "eslint src --ext .ts,.tsx",
"lint:styles": "stylelint src/**/*{S,s}tyle{,s}.ts",
"format": "prettier --write src/**/*.{ts,tsx,json}",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@linaria/core": "^4.5.4",
"@linaria/react": "^4.5.4",
"decimal.js": "^10.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@linaria/stylelint-config-standard-linaria": "^4.5.1",
"@linaria/vite": "^4.5.4",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"stylelint": "^15.10.2",
"stylelint-config-clean-order": "^5.0.1",
"typescript": "^5.1.6",
"vite": "^4.5.5",
"vite-tsconfig-paths": "^4.2.0"
},
"lint-staged": {
"src/**/*.(ts|tsx)": [
"lint:scripts",
"lint:styles",
"format"
]
}
}