-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.56 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "friends-wordle",
"version": "1.0.0",
"description": "Wordle based on friends",
"main": "index.js",
"scripts": {
"start": "webpack serve --config config/webpack.dev.js",
"lint": "node_modules/.bin/eslint --cache --fix ./src",
"build": "webpack --config config/webpack.prod.js",
"cyopen": "cypress open",
"cyrun": "cypress run",
"dockerbuild": "docker build -t friends-wordle .",
"dockerstart": "docker run --rm -it -p 4012:80 friends-wordle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danieljmann96/friends-wordle.git"
},
"author": "Daniel Mann",
"license": "ISC",
"bugs": {
"url": "https://github.com/danieljmann96/friends-wordle/issues"
},
"homepage": "https://github.com/danieljmann96/friends-wordle#readme",
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.3",
"chart.js": "^3.7.1",
"lodash": "^4.17.21",
"notistack": "^2.0.3",
"react": "^17.0.2",
"react-chartjs-2": "^4.1.0",
"react-device-detect": "^2.2.2",
"react-dom": "^17.0.2",
"react-simple-keyboard": "^3.4.94",
"uniqid": "^5.4.0"
},
"devDependencies": {
"@types/lodash": "^4.14.181",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/uniqid": "^5.3.2",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"axe-core": "^4.4.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"cypress": "^9.5.3",
"cypress-axe": "^0.14.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-const-case": "^1.2.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"ts-unused-exports": "^8.0.0",
"typescript": "^4.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx}": "prettier --write"
}
}