forked from dima117/testing-homework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "autotests-hw-with-auto-check",
"version": "1.0.0",
"scripts": {
"start": "cross-env BUG_ID=0 nodemon ./src/server/index.ts",
"test": "jest",
"build": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"dependencies": {
"@bem-react/classname": "^1.5.12",
"@testing-library/react": "^12.1.5",
"axios": "^0.23.0",
"bootstrap": "^5.1.3",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"faker": "^5.5.3",
"html-reporter": "^9.7.1",
"immer": "^9.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.5",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1",
"redux-observable": "^2.0.0",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@playwright/test": "^1.35.1",
"@testing-library/user-event": "^14.4.3",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/jest": "^29.2.4",
"@types/mini-css-extract-plugin": "^2.3.0",
"@types/node": "^16.11.1",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.4",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.1",
"@types/webpack": "^5.28.0",
"chai": "^4.3.7",
"css-loader": "^6.3.0",
"hermione": "^5.6.1",
"html-webpack-plugin": "^5.3.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"mini-css-extract-plugin": "^2.4.2",
"nodemon": "^2.0.13",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}