forked from ovh/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.61 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
{
"name": "manager",
"version": "0.0.0",
"private": true,
"description": "OVH Control Panel also known as Manager",
"license": "BSD-3-Clause",
"workspaces": [
"packages/components/*",
"packages/manager/apps/*",
"packages/manager/modules/*",
"packages/manager/tools/*"
],
"scripts": {
"build": "node --experimental-worker scripts/build.js",
"clean": "lerna clean -y && yarn run clean:dist && rimraf node_modules",
"clean:dist": "rimraf \"packages/**/dist?(-EU|-CA|-US)\"",
"docs:build": "vuepress prebuild docs && vuepress build docs",
"docs:deploy": "yarn run docs:build && gh-pages -d docs/.vuepress/dist -m \"docs: update documentation\"",
"docs:dev": "vuepress prebuild docs && vuepress dev docs",
"format": "run-p format:*",
"format:css": "yarn run lint:css --fix",
"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 --quiet --format=pretty \"packages\" \"scripts\"",
"lint:md": "remark -qf . && eslint --quiet --format=pretty --ext .md \"docs\" \"packages\"",
"packages:publish": "scripts/publish.js",
"release": "scripts/release.js",
"split": "scripts/split.js",
"start": "node -r esm scripts/start/index.js",
"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"
},
"devDependencies": {
"@commitlint/cli": "^8.3.3",
"@commitlint/config-angular": "^8.2.0",
"@ovh-ux/codename-generator": "^1.0.0",
"babel-eslint": "^10.0.3",
"commander": "^2.20.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-import-resolver-lerna": "^1.1.0",
"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",
"get-monorepo-packages": "^1.2.0",
"gh-pages": "^2.2.0",
"git-raw-commits": "^2.0.2",
"git-url-parse": "^11.1.2",
"htmlhint": "^0.11.0",
"husky": "^3.1.0",
"inquirer": "^7.0.6",
"lerna": "^3.18.1",
"lint-staged": "^9.5.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",
"remark-cli": "^7.0.1",
"remark-lint": "^6.0.5",
"remark-preset-lint-recommended": "^3.0.3",
"rimraf": "^3.0.2",
"sao": "^1.7.0",
"semver": "^5.6.0",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.13.0",
"testcafe": "^1.8.4",
"testcafe-angular-selectors": "^0.4.1",
"testcafe-reporter-html": "^1.4.6",
"vuepress": "^1.2.0"
},
"engines": {
"node": ">=12.13",
"yarn": ">=1.21.1"
}
}