-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.07 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
{
"name": "employees-app",
"version": "1.0.0",
"description": "App for employees list management",
"main": "index.js",
"author": "Waldo33",
"scripts": {
"start": "webpack serve --env port=3000",
"start:server": "json-server --watch json-server/db.json --port=8000",
"start:dev": "concurrently 'npm run start' 'npm run start:server'",
"build:prod": "webpack --env mode=production apiUrl=https://employee-api-ahwr.onrender.com",
"build:dev": "webpack --env mode=development",
"lint:ts": "eslint \"**/*.{ts,tsx}\"",
"lint:ts:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"test:unit": "jest --config ./config/jest/jest.config.ts",
"test:e2e": "npx playwright test",
"test:e2e:report": "npx playwright show-report",
"docs": "jsdoc -c jsdoc.conf.json",
"docs:serve": "serve docs"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@playwright/test": "^1.32.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-input-mask": "^3.0.2",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"babel-jest": "^29.5.0",
"better-docs": "^2.7.3",
"concurrently": "^7.6.0",
"css-loader": "^6.6.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jsdoc": "^4.0.2",
"json-server": "^0.17.0",
"mini-css-extract-plugin": "^2.5.3",
"react-refresh": "^0.12.0",
"react-refresh-webpack-plugin": "^0.1.0",
"reg-cli": "^0.17.7",
"regenerator-runtime": "^0.13.9",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"serve": "^14.2.1",
"style-loader": "^3.3.1",
"stylelint": "^14.5.3",
"stylelint-config-standard-scss": "^3.0.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.77.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.16",
"@reduxjs/toolkit": "^1.8.0",
"axios": "^0.26.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-input-mask": "^3.0.0-alpha.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.10.0"
}
}