forked from WiserSolutions/cypress-antd
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.61 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
{
"name": "@hon2a/cypress-antd",
"version": "0.4.11",
"description": "Helpers for interacting with Ant Design components in Cypress tests.",
"repository": {
"type": "git",
"url": "git+https://github.com/hon2a/cypress-antd"
},
"author": "Jan Konopásek",
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index.js",
"files": [
"/es",
"/lib"
],
"scripts": {
"format": "prettier --write \"./**/*.js\" --loglevel warn",
"lint": "eslint -f @hon2a/eslint-formatter-idea ./src ./cypress",
"typecheck": "tsc --noEmit",
"test": "cypress run",
"tdd": "cypress open",
"build": "transpile-js --ignore '**/*.ts' & tsc & tsc --project tsconfig.es.json",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@ant-design/icons": "4.7.0",
"@babel/runtime-corejs3": "7.16.3",
"@babel/eslint-parser": "7.16.3",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@hon2a/eslint-formatter-idea": "1.0.9",
"@hon2a/transpile-js": "0.2.2",
"@types/lodash": "4.14.178",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"antd": "4.17.3",
"cypress": "9.1.1",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-react": "7.27.1",
"moment": "2.29.1",
"prettier": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.5.3"
},
"dependencies": {
"@babel/runtime": "7.16.3",
"@hon2a/cypress-without": "1.1.8",
"lodash": "^4.17.21"
}
}