forked from surveyjs/survey-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"scripts": {
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --max-warnings=0",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --max-warnings=0 --fix",
"pre-push-check": "npm run test --prefix packages/survey-core",
"prepare": "husky install",
"postinstall": "playwright install chromium"
},
"version": "1.12.17",
"name": "survey-library",
"private": true,
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@babel/plugin-transform-runtime": "7.23.3",
"@playwright/test": "1.52.0",
"@types/lodash": "4.14.186",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vue/eslint-config-typescript": "^11.0.0",
"axe-core": "^4.8.2",
"axe-playwright": "^2.1.0",
"axe-testcafe": "^3.0.0",
"concurrently": "^7",
"cross-env": "^7.0.3",
"devextreme-screenshot-comparer": "^2.0.11",
"lint-staged": "^15.4.3",
"eslint": "^8.57.0",
"eslint-plugin-surveyjs": "git+https://github.com/surveyjs/eslint-surveyjs.git",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-vue": "^9.3.0",
"get-func-name": "2.0.0",
"husky": "^9.1.7",
"node-uuid": "1.4.7",
"typescript": "5.8.3",
"playwright": "1.52.0",
"puppeteer": "22.13.1",
"testcafe": "3.3.0"
},
"overrides": {
"axe-testcafe": {
"axe-core": "^4.8.2"
}
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-check"
}
},
"lint-staged": {
"**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": [
"eslint --fix"
]
}
}