-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "byteping",
"version": "0.1.0",
"private": true,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"commit": "git-cz"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.2.1",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@studio-freight/react-lenis": "^0.0.38",
"@tanstack/react-query": "^5.0.0-beta.35",
"bufferutil": "^4.0.8",
"cypress": "^13.6.0",
"gsap": "^3.12.4",
"next": "^13.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"react-spinners": "^0.13.8",
"socket.io-client": "^4.7.2",
"split-text-js": "^1.0.3",
"styled-components": "^6.0.8",
"utf-8-validate": "^5.0.10",
"ws": "^8.14.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/cypress": "^1.1.3",
"@types/greensock": "^1.15.32",
"@types/node": "^20.8.0",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"msw": "^1.3.2",
"prettier": "3.0.3",
"semantic-release": "^22.0.5",
"typescript": "^5.2.2"
},
"lint-staged": {
"app/**/*.{js,ts,jsx,tsx,html,css}": "prettier --write",
"app/**/*.{js,ts,jsx,tsx}": "eslint"
}
}