-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
47 lines (47 loc) · 1.13 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
{
"private": true,
"name": "webcube-projects",
"description": "Continuously updated JS infrastructure for modern web dev",
"scripts": {
"precommit": "create-cube precommit",
"precommit:custom": "lerna run precommit:custom",
"setup": "yarn install && lerna run prepare && npm run setup:env",
"setup:env": "echo 10.0 > .project-version",
"update": "create-cube update && npm run setup:env",
"upgrade": "create-cube update -c && npm run setup:env",
"test": "lerna run test",
"lint": "create-cube lint",
"lint:error": "create-cube lint --quiet"
},
"engines": {
"node": ">=8.6.0 <11.0.0"
},
"lint-staged": {
"linters": {
"*.{js,jsx,ts,tsx,mjs,mjsx,es6}": [
"eslint --fix --color",
"stylelint",
"git add"
],
"*.{css,scss,less}": [
"stylelint --fix",
"git add"
]
},
"ignore": []
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"entries/*",
"services/*",
"packages/*",
"examples/*"
],
"devDependencies": {
"webcube": "^2.0.2"
}
}