forked from craftercms/studio-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@craftercms/studio",
"private": true,
"workspaces": [
"ui/app",
"ui/guest",
"ui/legacy",
"ui/scss",
"ui/monaco",
"ui/uppy",
"ui/npm-content"
],
"eslintConfig": {
"extends": [
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
],
"spaced-comment": [
"error",
"always",
{
"line": {
"markers": [
"/",
"#"
]
},
"block": {
"markers": [
"!",
"*",
"#",
"function",
"const",
"if",
"export",
"interface",
"#__PURE__",
"@__PURE__"
],
"exceptions": [
"!",
"*",
"#"
],
"balanced": false
}
}
]
},
"parserOptions": {
"ecmaVersion": 2015
}
},
"resolutions": {
"@types/react": "^18.0.28",
"browserslist": "^4.21.5",
"caniuse-lite": "^1.0.30001451",
"clsx": "^2.1.0",
"react-is": "^18.2.0",
"ansi-regex": "^5.0.1",
"json5": "^2.2.2",
"nth-check": "^2.0.1",
"semver": "^7.5.2",
"@videojs/vhs-utils": "^4.1.0"
},
"packageManager": "[email protected]",
"scripts": {
"prettier:raw": "node scripts/prettier.js",
"prettier:all": "node scripts/prettier.js write",
"prettier:next": "node scripts/prettier.js next",
"prettier:legacy": "node scripts/prettier.js legacy",
"prettier:check": "node scripts/prettier.js check-changed",
"prettier:changed": "node scripts/prettier.js changed",
"prettier:certify": "node scripts/prettier.js check",
"prettier:sass": "prettier --config prettier.config.js --write 'ui/scss/**/*.scss'",
"prettier:css": "prettier --config prettier.config.js --write 'static-assets/css/**/*.css' 'static-assets/themes/cstudioTheme/**/*.css'",
"format-pom": "prettier --use-tabs --write pom.xml",
"lint:ci": "eslint --ext .ts,.tsx .",
"update:yarn": "yarn set version latest",
"update:caniuse": "yarn up -R caniuse-lite"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^3.1.0",
"@types/node": "^16.11.13",
"@types/rimraf": "^3.0.2",
"build-if-changed": "^1.5.5",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"glob-gitignore": "^1.0.14",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts-treeshaking": "^1.0.2",
"yargs": "^15.4.1"
}
}