forked from ovh/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 4.08 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
110
111
112
113
{
"name": "manager",
"version": "0.0.0",
"private": true,
"description": "OVH Control Panel also known as Manager",
"license": "BSD-3-Clause",
"workspaces": [
"docs",
"packages/components/*",
"packages/manager/apps/*",
"packages/manager/modules/*",
"packages/manager/tools/*",
"packages/manager/fragments/*"
],
"scripts": {
"build": "node scripts/build.js",
"clean": "lerna clean -y && yarn run clean:dist && rimraf node_modules",
"clean:dist": "rimraf \"packages/**/dist?(-EU|-CA|-US)\"",
"format": "run-p format:*",
"format:css": "yarn run lint:css --fix",
"format:html": "yarn run lint:html && prettier --parser=html --write \"packages/**/*.html\"",
"format:js": "yarn run lint:js --fix",
"format:md": "yarn run lint:md --fix",
"generate:app": "sao ./packages/manager/tools/sao-ovh-manager-app",
"generate:module": "sao ./packages/manager/tools/sao-ovh-manager-module",
"lint": "run-p lint:*",
"lint:css": "stylelint \"packages/**/*.{css,less,scss}\"",
"lint:html": "htmlhint --ignore \"**/dist/**,**/dist-EU/**,**/dist-CA/**,**/dist-US/**\" \"packages/**/*.html\"",
"lint:js": "eslint --cache --quiet --format=pretty \"packages\" \"scripts\"",
"lint:md": "remark -qf . && eslint --quiet --format=pretty --ext .md \"docs\" \"packages\"",
"list-dependents": "node scripts/list-dependents.js",
"packages:publish": "scripts/publish.js",
"prepare": "husky install",
"release": "scripts/release.js",
"split": "scripts/split.js",
"start": "node -r esm scripts/start-application.js",
"test:jest": "jest --runInBand",
"test": "yarn lint",
"test:e2e:chromium": "rimraf ./reports && testcafe chromium",
"test:e2e:chromium:headless": "rimraf ./reports && testcafe chromium:headless",
"test:e2e:firefox": "rimraf ./reports && testcafe firefox",
"test:e2e:firefox:headless": "rimraf ./reports && testcafe firefox:headless",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"resolutions": {
"flatpickr": "4.6.9"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@lerna/package-graph": "^3.18.5",
"@lerna/project": "^3.21.0",
"@ovh-ux/codename-generator": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.1",
"babel-preset-react-app": "^10.0.0",
"commander": "^6.0.0",
"concat-stream": "^2.0.0",
"conventional-changelog-cli": "^2.0.25",
"conventional-commits-parser": "^3.0.5",
"conventional-recommended-bump": "^4.1.1",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-angular": "^4.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.1.1",
"esm": "^3.2.25",
"execa": "^2.0.5",
"git-raw-commits": "^2.0.2",
"git-url-parse": "^11.1.2",
"htmlhint": "^0.15.1",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^7.0.6",
"jest": "^27.2.1",
"jest-circus": "^27.2.1",
"jest-scss-transform": "^1.0.1",
"jest-watch-typeahead": "^0.6.4",
"lerna": "^3.18.1",
"lint-staged": "^11.0.0",
"lodash": "^4.17.11",
"npm-run-all": "^4.1.5",
"octonode": "^0.9.5",
"ora": "^3.4.0",
"p-series": "^2.1.0",
"prettier": "^1.18.2",
"progress": "^2.0.3",
"remark-cli": "^8.0.1",
"remark-lint": "^7.0.1",
"remark-preset-lint-recommended": "^4.0.1",
"rimraf": "^3.0.2",
"sao": "^1.7.0",
"semver": "^5.6.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0",
"testcafe": "1.8.2",
"testcafe-angular-selectors": "^0.4.1",
"testcafe-reporter-html": "^1.4.6",
"whatwg-fetch": "^3.6.2"
},
"engines": {
"node": "^16",
"yarn": ">=1.21.1"
}
}