-
Notifications
You must be signed in to change notification settings - Fork 899
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.02 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
57
58
59
60
61
62
{
"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",
"a": "refresh azure cache for eslint plugin"
},
"version": "1.12.17",
"name": "survey-library",
"private": true,
"devDependencies": {
"@babel/plugin-transform-runtime": "7.23.3",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@playwright/test": "1.52.0",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@rollup/plugin-virtual": "^3.0.2",
"@rushstack/eslint-patch": "^1.1.4",
"@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",
"concurrently": "^7",
"cross-env": "^7.0.3",
"devextreme-screenshot-comparer": "^2.0.11",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-surveyjs": "git+https://github.com/surveyjs/eslint-surveyjs.git",
"eslint-plugin-vue": "^9.3.0",
"get-func-name": "2.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"node-uuid": "1.4.7",
"playwright": "1.52.0",
"postcss-banner": "^4.0.1",
"postcss-url": "^10.1.3",
"puppeteer": "22.13.1",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-license": "^3.6.0",
"rollup-plugin-postcss": "^4.0.2",
"terser": "^5.46.0",
"typescript": "5.8.3"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-check"
}
},
"lint-staged": {
"**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": [
"eslint --fix"
]
}
}