-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.62 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
63
64
65
66
67
68
69
70
{
"name": "altinn-studio",
"devDependencies": {
"eslint": "8.57.1",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"prettier": "3.8.1"
},
"lint-staged": {
"./src/App/frontend/**/*.{js,jsx,ts,tsx}": [
"./scripts/pre-commit-check-for-skipped-tests",
"yarn --cwd src/App/frontend eslint --cache --fix"
],
"./src/App/frontend/**/*.json": "yarn --cwd src/App/frontend eslint --cache --fix",
"./src/App/frontend/**/*.{css,md}": "prettier -w",
"*{js,jsx,tsx,ts,css,md}": "prettier -w",
"./src/Designer/frontend/language/src/*.json": "yarn run sort-texts"
},
"packageManager": "yarn@4.12.0",
"private": true,
"scripts": {
"codeowners:generate": "node .github/scripts/codeowners-generate.mjs",
"codeowners:validate": "node .github/scripts/codeowners-generate.mjs --check",
"lint": "yarn workspace studio-designer-frontend lint",
"lint:fix": "yarn workspace studio-designer-frontend lint:fix",
"codestyle:check": "yarn workspace studio-designer-frontend codestyle:check",
"codestyle:fix": "yarn workspace studio-designer-frontend codestyle:fix",
"setup": "husky && node src/Designer/development/setup.js && yarn run git:ignore-revs",
"sort-texts": "yarn workspace @altinn-studio/language run sort",
"start-app-development": "yarn workspace app-development start",
"prepare": "husky"
},
"syncpack": {
"semverRange": ""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 8",
"not op_mini all"
],
"workspaces": [
"src/App/frontend",
"src/Designer/development/azure-devops-mock",
"src/Designer/frontend",
"src/Designer/frontend/app-development",
"src/Designer/frontend/app-preview",
"src/Designer/frontend/dashboard",
"src/Designer/frontend/resourceadm",
"src/Designer/frontend/resourceadm/testing/playwright",
"src/Designer/frontend/language",
"src/Designer/frontend/studio-root",
"src/Designer/frontend/admin",
"src/Designer/frontend/settings",
"src/Designer/frontend/testing/cypress",
"src/Designer/frontend/testing/playwright",
"src/Designer/frontend/packages/schema-editor",
"src/Designer/frontend/packages/schema-model",
"src/Designer/frontend/packages/shared",
"src/Designer/frontend/packages/text-editor",
"src/Designer/frontend/packages/ux-editor",
"src/Designer/frontend/packages/ux-editor-v3",
"src/Designer/frontend/packages/process-editor",
"src/Designer/frontend/packages/policy-editor",
"src/Designer/frontend/libs/**"
],
"resolutions": {
"jsdom@npm:^26.1.0": "patch:jsdom@npm%3A26.1.0#~/.yarn/patches/jsdom-npm-26.1.0-3857255f02.patch"
}
}