-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.44 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
{
"name": "@temple8/vite-react-ts",
"author": {
"name": "Asım Tahir",
"email": "[email protected]",
"url": "https://github.com/Asim-Tahir"
},
"license": "MIT",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:script": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:script@fix": "yarn lint:script --fix",
"lint:style": "stylelint **/*.{css,pcss,postcss}",
"lint:style@fix": "yarn lint:style --fix",
"lint": "yarn lint:script && yarn lint:style",
"lint@fix": "yarn lint:script@fix && yarn lint:style@fix",
"test": "jest -i tests/",
"test+coverage": "yarn test --coverage",
"test:ci": "yarn test --ci",
"test@watch": "yarn test --watch"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@iconify/json": "^1.1.398",
"@iconify/react": "^3.0.1",
"@swc-node/jest": "^1.3.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/eslint": "^7.28.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/prettier": "^2.3.2",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/stylelint": "^13.13.2",
"@types/testing-library__jest-dom": "^5.14.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.1",
"jest": "^27.1.0",
"jest-circus": "^27.1.0",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.3.6",
"postcss-import": "^14.0.2",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-tailwindcss": "^0.0.1",
"tailwindcss": "^2.2.11",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"unplugin-auto-import": "^0.4.5",
"unplugin-icons": "^0.7.6",
"vite": "^2.5.4",
"vite-plugin-svg-icons": "^1.0.4",
"vite-react-jsx": "^1.1.2"
},
"packageManager": "[email protected]"
}