-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.49 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
{
"name": "hs-test-web",
"version": "4.2.1",
"description": "Hyperskill Testing Library on TypeScript",
"main": "dist/hstest/index.js",
"scripts": {
"test": "set NODE_ENV=test_lib && mocha 'tests/vanilla/**/*test.*js' --recursive --timeout 10000",
"test-react": "set NODE_ENV=test_lib && mocha 'tests/react/**/*test.*js' --recursive --timeout 10000",
"lint": "eslint \"**/*.ts\" --ignore-pattern node_modules/",
"build": "tsc",
"type-check": "tsc --noEmit"
},
"keywords": [],
"author": "Vladimir Turov & Ainur Gimadeev",
"dependencies": {
"@medv/finder": "^4.0.2",
"@types/callsite": "^1.0.34",
"callsite": "^1.0.0",
"puppeteer": "24.6.1"
},
"devDependencies": {
"@babel/core": ">=7.26.0",
"@babel/preset-env": ">=7.26.0",
"@babel/preset-react": ">=7.26.3",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/webpack": "5.28.5",
"@types/webpack-dev-server": "4.7.2",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"babel-loader": "^9.2.1",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"file-loader": ">=6.0.0",
"mocha": "11.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"style-loader": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
}
}