-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
executable file
·74 lines (74 loc) · 2.37 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
{
"private": true,
"name": "create-magento-app",
"scripts": {
"check-types": "tsc --noemit --project ./build-packages/magento-scripts",
"lint-eslint": "eslint ./build-packages --cache --no-error-on-unmatched-pattern --ext .js",
"lint": "npm run lint-eslint",
"publish": "lerna publish --exact --no-private",
"publish:alpha": "lerna publish --preid alpha --no-private --dist-tag alpha",
"postinstall": "lerna bootstrap && husky install",
"clean": "lerna clean --yes",
"generate-changelog": "gren changelog --override",
"prepare": "husky install"
},
"devDependencies": {
"github-release-notes": "^0.17.3",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.7.1",
"standard": "^17.0.0",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"standard",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"ignorePatterns": [
"./sample-packages/**",
"./container-images/**",
"./docker-actions/**",
"**/node_modules/**",
"build-packages/magento-scripts/lib/config/templates/**",
"**/*.d.ts"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-var-requires": "off"
}
},
"workspaces": [
"build-packages/*",
"runtime-packages/*",
"sample-packages/*"
]
}