-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.94 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
{
"name": "super-vite",
"author": {
"name": "PatrickNiyogitare",
"email": "patrickniyogitare28@gmail.com"
},
"description": "⚡ A vite react typescript boilerplate with pre-configured sass, redux-tool-kit, tailwind & jest... built in cli coming soon ⚒️",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"prettier": "prettier --write **/*.{ts,tsx,js}",
"lint:ts": "npm run prettier && eslint --fix 'src/**/*.{ts,tsx}'",
"lint:scss": "stylelint --fix 'src/**/*.scss'",
"lint:types": "tsc -p . --noEmit",
"test": "yarn run jest -env=jsdom --coverage --watchAll=false"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"@types/react-router-dom": "^5.3.2",
"classnames-generics": "^1.0.6",
"global": "^4.4.0",
"i18next": "^21.5.2",
"i18next-browser-languagedetector": "^6.1.2",
"prettier": "^2.4.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-i18next": "^11.14.2",
"react-redux": "^7.2.6",
"react-router-dom": "5.2.0",
"sass": "^1.43.4",
"vite-plugin-sass-dts": "^1.1.18"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^16.11.7",
"@types/react": "^17.0.35",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react": "^1.0.0",
"autoprefixer": "^10.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-react-app": "^10.0.0",
"eslint": "^8.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"jest-scss-transform": "^1.0.1",
"jest-watch-typeahead": "^1.0.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.8",
"typescript": "^4.3.2",
"vite": "^2.9.16"
}
}