-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.01 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
{
"name": "explorer-bug",
"version": "0.0.0",
"description": "Bug Game",
"repository": "https://github.com/ayonious/explorer-bug",
"keywords": [
"react",
"game",
"learning"
],
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.15.20",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-github-corner": "^2.5.0",
"styled-components": "^6.1.11"
},
"scripts": {
"cypress-headless": "cypress run --browser chrome --headless",
"cypress-web": "cypress open",
"start": "webpack serve --open --mode development",
"start-headless": "webpack serve --mode development",
"test-integration": "start-server-and-test start-headless http://localhost:8080 cypress-headless",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"build": "webpack --mode production",
"unit-test": "jest --config jestconfig.json"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@types/webpack-env": "^1.18.5",
"babel-loader": "^9.1.3",
"codecov": "^3.8.3",
"cypress": "^13.12.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"react-test-renderer": "^18.3.1",
"source-map-loader": "^5.0.0",
"start-server-and-test": "^2.0.4",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}