forked from fdhhhdjd/Mini-Zalo-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.26 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "zaui-coffee",
"private": true,
"version": "1.1.0",
"description": "ZaUI Dev",
"repository": "",
"license": "UNLICENSED",
"browserslist": [
"Android >= 5",
"IOS >= 9.3",
"Edge >= 15",
"Safari >= 9.1",
"Chrome >= 49",
"Firefox >= 31",
"Samsung >= 5"
],
"scripts": {
"start": "zmp start",
"dev": "zmp start --port=3002",
"deploy": "zmp deploy",
"build:css": "postcss src/css/tailwind.css -o src/css/styles.css",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"prettier": "prettier --write",
"postinstall": "husky install"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint",
"yarn prettier"
]
},
"dependencies": {
"@react-spring/web": "^9.6.1",
"@types/lodash": "^4.14.191",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.8.2",
"react-transition-group": "^4.4.5",
"recoil": "^0.7.7",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"swiper": "^9.1.0",
"zmp-sdk": "^2.27.2",
"zmp-ui": "^1.6.0-rc.6"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-ft-flow": "^3.0.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.21",
"postcss-aspect-ratio-polyfill": "^2.0.0",
"postcss-cli": "^8.3.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^3.0.3",
"sass": "^1.58.3",
"tailwindcss": "^3.2.7",
"typescript": "^5.2.2",
"vite": "^2.6.14",
"vite-tsconfig-paths": "^4.0.5",
"zmp-cli": "^3.15.1"
}
}