-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
81 lines (81 loc) · 3.75 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
{
"name": "@cds/core",
"private": true,
"engines": {
"node": ">=16.0.0",
"yarn": "please-use-npm",
"npm": ">=7.10.0"
},
"workspaces": [
"./projects/core",
"./projects/adoption",
"./projects/angular",
"./projects/react"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:ci": "npm-run-all clean lint build test public-api:check",
"clean": "npm run clean --workspaces --if-present",
"commit": "cz --signoff",
"lint": "npm-run-all _lint:code _lint:styles _lint:format",
"lint:fix": "npm-run-all _lint:code:fix _lint:styles:fix _lint:format:fix",
"lint:changed": "npm-run-all _lint:code:changed _lint:styles:changed _lint:format:changed",
"lint:changed:fix": "npm-run-all _lint:code:changed:fix _lint:styles:changed:fix _lint:format:changed:fix",
"prepare": "husky install",
"preview": "semantic-release --plugins \"@semantic-release/commit-analyzer\" \"@semantic-release/release-notes-generator\" --dry-run --no-ci",
"public-api:check": "npm run public-api:check --workspaces --if-present",
"public-api:update": "npm run public-api:update --workspaces --if-present",
"start": "npm run start --workspace core-ws",
"test": "npm run test --workspaces --if-present",
"_lint:code": "eslint . --ext .js,.json,.ts",
"_lint:code:fix": "npm run --silent _lint:code -- --fix",
"_lint:code:changed": "node ./scripts/get-changed-files.js --command \"eslint\" --filter \"**/*.{js,json,ts}\"",
"_lint:code:changed:fix": "node ./scripts/get-changed-files.js --command \"eslint --fix\" --filter \"**/*.{js,json,ts}\"",
"_lint:format": "prettier . --check --loglevel warn",
"_lint:format:fix": "npm run --silent _lint:format -- --write",
"_lint:format:changed": "node ./scripts/get-changed-files.js --command \"prettier --check --loglevel warn --ignore-unknown\" --filter \"**\"",
"_lint:format:changed:fix": "node ./scripts/get-changed-files.js --command \"prettier --write --loglevel warn --ignore-unknown\" --filter \"**\"",
"_lint:styles": "stylelint \"**/*.{css,scss,sass}\" \"**/.*/**/*.{css,scss,sass}\"",
"_lint:styles:fix": "npm run --silent _lint:styles -- --fix",
"_lint:styles:changed": "node ./scripts/get-changed-files.js --command \"stylelint\" --filter \"**/*.{css,scss,sass}\"",
"_lint:styles:changed:fix": "node ./scripts/get-changed-files.js --command \"stylelint --fix\" --filter \"**/*.{css,scss,sass}\""
},
"_nohoist": "any deps that should not be hoisted list under dependencies, https://github.com/npm/rfcs/issues/287",
"dependencies": {
"@rollup/plugin-typescript": "file:./no-hoist",
"jasmine": "file:./no-hoist",
"lit": "file:./no-hoist",
"ramda": "file:./no-hoist",
"tslib": "file:./no-hoist"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.5.0",
"@commitlint/cz-commitlint": "^16.1.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"commitizen": "^4.3.0",
"commitlint": "^16.1.0",
"cpy-cli": "^3.1.0",
"del-cli": "^4.0.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-license-header": "^0.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"netlify-cli": "^16.9.3",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semantic-release": "19.0.3",
"semantic-release-slack-bot": "3.5.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^5.0.0",
"stylelint-plugin-license-header": "1.0.3"
}
}