-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 KB
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": "smite-client",
"version": "0.1.0",
"private": true,
"homepage": "https://hphothong.github.io/smite",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"test": "jest --ci --coverage",
"test:watch": "jest --watch",
"tsc": "tsc --noEmit",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.13.7",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^4.29.25",
"@tanstack/react-query-devtools": "^4.29.25",
"axios": "^0.21.4",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@faker-js/faker": "^8.0.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/md5": "^2.3.1",
"@types/react": "^18.2.14",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"husky": "^8.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"next": "^13.4.10",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}