-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "reactjs-vite-tailwindcss-boilerplate",
"description": "This is a React + vite boilerplate to be used with Tailwindcss.",
"version": "0.1.0",
"private": true,
"author": {
"name": "João Paulo Moraes",
"email": "[email protected]",
"url": "https://github.com/joaopaulomoraes"
},
"bugs": {
"url": "https://github.com/joaopaulomoraes/reactjs-vite-tailwindcss-boilerplate/issues",
"email": "[email protected]"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "jest",
"lint": "eslint src --max-warnings=0",
"preview": "vite preview --port 8080"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.17.3",
"axios": "^0.24.0",
"echarts": "^5.2.2",
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"luxon": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/axios": "^0.14.0",
"@types/echarts": "^4.9.12",
"@types/jest": "^27.0.2",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.omit": "^4.5.6",
"@types/luxon": "^2.0.7",
"@types/node": "^16.11.7",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-ga": "^2.3.0",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@vitejs/plugin-react": "^1.0.9",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tailwindcss": "^1.17.1",
"jest": "^27.3.1",
"postcss": "^8.3.11",
"prettier": "2.4.1",
"sass": "^1.45.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.4.4",
"vite": "^2.6.14",
"vite-tsconfig-paths": "^3.3.17"
}
}