-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"name": "memology-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint \"src/**/*.{js,mjs,cjs,ts,mts,jsx,tsx}\"",
"preview": "vite preview",
"lint:fix": "eslint \"src/**/*.{js,mjs,cjs,ts,mts,jsx,tsx}\" --fix",
"proto": "npx protoc --ts_out src/shared/proto --ts_opt eslint_disable --proto_path protos error.proto user.proto meme.proto rating.proto comment.proto websocket.proto",
"prepare": "husky install",
"predeploy": "tsc && vite build",
"deploy": "vk-miniapps-deploy"
},
"dependencies": {
"@protobuf-ts/plugin": "^2.9.1",
"@vkontakte/icons": "^2.85.0",
"@vkontakte/vk-bridge": "^2.12.2",
"@vkontakte/vk-bridge-react": "^1.0.1",
"@vkontakte/vk-mini-apps-router": "^1.3.1",
"@vkontakte/vk-miniapps-deploy": "^0.1.6",
"@vkontakte/vkui": "^5.10.0",
"effector": "^23.0.0",
"effector-react": "^23.0.1",
"patronum": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"wretch": "^2.7.1"
},
"devDependencies": {
"@types/react": "^18.2.41",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.55.0",
"eslint-kit": "^10.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vite": "^5.0.5",
"vite-tsconfig-paths": "^4.2.1"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
}
}