-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.23 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
{
"name": "the-coffee-shop",
"private": true,
"version": "1.0.0",
"description": "zmp-blank-templates",
"repository": "",
"license": "UNLICENSED",
"browserslist": [
"Android >= 5",
"IOS >= 9.3",
"Edge >= 15",
"Safari >= 9.1",
"Chrome >= 49",
"Firefox >= 31",
"Samsung >= 5"
],
"scripts": {
"start": "zmp start",
"deploy": "zmp deploy",
"build:css": "postcss src/assets/css/tailwind.scss -o src/assets/css/styles.css",
"prepare": "husky"
},
"dependencies": {
"@types/lodash": "^4.17.7",
"@vitejs/plugin-react": "^1.3.2",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.0",
"recoil": "^0.7.7",
"swiper": "^11.1.10",
"zmp-sdk": "latest",
"zmp-ui": "latest"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"postcss": "^8.4.38",
"postcss-aspect-ratio-polyfill": "^2.0.0",
"postcss-cli": "^8.3.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^3.3.3",
"sass": "^1.76.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^2.6.14",
"vite-tsconfig-paths": "4.0.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,vue}": [
"prettier . --write",
"eslint src --fix"
]
}
}