-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (71 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (71 loc) · 2.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "sahaya-frontend",
"private": true,
"description": "sahaya Frontend",
"scripts": {
"serve": "webpack serve",
"build": "npx webpack",
"lint": "eslint src --ext tsx",
"prettier": "prettier --config prettier.config.js --write \"src/**/*.{ts,tsx}\"",
"typescript": "tsc",
"test": "jest --config jest.config.json --verbose false --passWithNoTests",
"test:watch": "jest --config jest.config.json --verbose false --passWithNoTests --watch",
"coverage": "npm test -- --coverage"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.210",
"@swc/jest": "^0.2.21",
"@testing-library/dom": "^8.14.0",
"@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/lodash": "^4.14.182",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@types/single-spa-react": "^3.0.1",
"@types/webpack-env": "^1.17.0",
"@types/yup": "^0.29.14",
"@typescript-eslint/parser": "^5.30.5",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.2.2",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"istanbul-badges-readme": "^1.8.2",
"jest": "^28.1.2",
"jest-axe": "^6.0.0",
"jest-cli": "^28.1.2",
"jest-watch-typeahead": "^1.1.0",
"jest-when": "^3.5.1",
"node-sass": "^7.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"swc-loader": "^0.2.3",
"ts-loader": "9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"jest-environment-jsdom": "^28.1.2"
}
}