-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "tournament-manger",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --open --mode development",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*{ts,tsx}' --config ./.prettierrc.json",
"test": "jest",
"test:continuous": "jest --watch --watchAll"
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "5.13.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.2.0"
},
"devDependencies": {
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.2",
"@types/react": "18.2.13",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"ts-loader": "9.4.3",
"typescript": "5.1.3",
"webpack": "5.88.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
}
}