forked from scandipwa/scandipwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 817 Bytes
/
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
{
"private": true,
"name": "create-scandipwa-app",
"scripts": {
"eslint": "eslint ./packages --resolve-plugins-relative-to . --cache --no-error-on-unmatched-pattern --ext .js,.ts,.tsx",
"csa": "create-scandipwa-app packages/test",
"postinstall": "lerna bootstrap",
"clean": "lerna clean --yes"
},
"devDependencies": {
"@scandipwa/eslint-config": "^0.1.6",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"lerna": "^3.22.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run eslint"
}
},
"eslintConfig": {
"extends": "@scandipwa",
"ignorePatterns": [
"**/node_modules/**",
"**/Magento_Theme/**"
]
},
"workspaces": [
"packages/*"
]
}