-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "@nujek/monorepo",
"version": "1.0.0",
"private": true,
"description": "Nujek - Build Websites with Nuxt.js and Storyblok",
"license": "MIT",
"author": "Kevin Regenrek",
"scripts": {
"build": "esno ./scripts/build.ts",
"publish:ci": "esno ./scripts/publish.ts",
"release": "yarn publish:ci --release-only",
"clean:nm": "esno ./scripts/clean.ts",
"build:sb": "yarn build sb",
"build:ui": "yarn build ui",
"publish:ui": "yarn publish:ci ui",
"publish:sb": "yarn publish:ci storyblok",
"publish:bundle": "yarn publish:ci bundle",
"clean": "rimraf dist types typings packages/*/dist",
"types:fix": "esno ./scripts/types-fix.ts",
"lint:fix": "eslint --fix --ext .js,.jsx,.tsx,.vue",
"lint": "esno ./scripts/lint.ts",
"test:unit": "esno ./scripts/test-unit.ts",
"test:e2e": "esno ./scripts/test-e2e.ts",
"compile:css": "esno ./scripts/styles.ts",
"build:types": "tsc --emitDeclarationOnly && npm run types:fix"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "eslint --fix"
},
"devDependencies": {
"bumpp": "^7.1.1",
"esno": "^0.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mkdist": "^0.1.1",
"rimraf": "^3.0.2",
"siroc": "^0.6.5"
},
"engines": {
"node": ">=14"
}
}