forked from surveyjs/survey-creator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.15 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": "survey-creator",
"homepage": "https://surveyjs.io/Overview/Survey-Creator",
"license": "https://surveyjs.io/Licenses#SurveyCreator",
"repository": {
"type": "git",
"url": "https://github.com/surveyjs/survey-creator.git"
},
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "concurrently \"npm run dev --prefix ../survey-library\" \"http-server -p 7777 --silent\" \"npm run watch:dev --prefix packages/survey-creator-core\" \"npm run watch:prod --prefix packages/survey-creator-core\" \"npm run watch:dev --prefix packages/survey-creator-knockout\" \"npm run watch:prod --prefix packages/survey-creator-knockout\" \"npm run watch:dev --prefix packages/survey-creator-react\" \"npm run watch:prod --prefix packages/survey-creator-react\" ",
"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 lint",
"prepare": "husky install",
"postinstall": "playwright install chromium"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@playwright/test": "1.53.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-playwright": "^2.1.0",
"concurrently": "^7",
"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",
"playwright": "1.53.2",
"puppeteer": "22.13.1",
"typescript": "5.8.3",
"testcafe": "3.3.0"
},
"lint-staged": {
"**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": [
"eslint --fix"
]
}
}