-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
{
"name": "picreact",
"version": "1.5.1",
"private": true,
"engines": {
"node": "^18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "tsc && vite build",
"css-types": "tcm src/styles/components -w",
"lint": "tcm src/styles/components -s && tsc && prettier -w --log-level=silent src && eslint '**/*.{ts,tsx}' --quiet --fix",
"prepare": "husky install",
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"classnames": "2.2.6",
"copy-to-clipboard": "3.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"wouter": "2.12.0"
},
"devDependencies": {
"@testing-library/react": "14.0.0",
"@types/classnames": "2.2.11",
"@types/node": "18.18.4",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.11",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"@vitejs/plugin-react": "4.1.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"happy-dom": "12.9.0",
"husky": "6.0.0",
"postcss-preset-env": "9.1.4",
"prettier": "3.0.3",
"typed-css-modules": "0.7.2",
"typescript": "5.2.2",
"vite": "4.4.11",
"vitest": "0.34.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}