forked from mozilla/perfcompare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.42 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "perfcompare",
"version": "0.9.0",
"homepage": "./",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.2",
"@mui/system": "^5.9.2",
"@reduxjs/toolkit": "^1.8.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"express": "^4.18.1",
"notistack": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"ts-node": "^10.9.1"
},
"scripts": {
"dev": "webpack serve --config webpack/webpack.config.js --env env=development --open",
"start": "node server.js",
"build": "webpack --config webpack/webpack.config.js --env env=production",
"lint": "eslint src/**/*.{js,ts,tsx}",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.{js,jsx,css,html,md,json,yaml,yml}\" --config ./.prettierrc.js",
"format:check": "prettier --check \"src/**/*.{js,jsx,css,html,md,json,yaml,yml}\" --config ./.prettierrc.js",
"test": "jest --testPathIgnorePatterns=accessibility --testPathIgnorePatterns=utils",
"test:a11y": "jest --testPathPattern=accessibility",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.6",
"@jest/types": "^28.1.3",
"@swc/core": "^1.2.233",
"@swc/jest": "^0.2.21",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/jest-axe": "^3.5.4",
"@types/material-ui": "^0.21.12",
"@types/node": "^18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-loader": "^8.2.5",
"babel-preset-jest": "^28.1.3",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"core-js": "^3.24.0",
"css-loader": "^6.7.1",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"espree": "^9.3.2",
"history": "^5.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-axe": "^6.0.0",
"jest-environment-jsdom": "^28.1.2",
"jest-resolve": "^28.1.3",
"jest-watch-typeahead": "^2.0.0",
"prettier": "^2.7.1",
"react-app-polyfill": "^3.0.0",
"react-refresh": "^0.14.0",
"regenerator-runtime": "^0.13.9",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
}
}