-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
112 lines (112 loc) · 3.59 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "venice",
"description": "Design System using Monorepo, Typescript, React, Vue, CSS Modules and Storybook.",
"author": "@juntossomosmais",
"version": "0.0.1",
"private": true,
"homepage": "https://github.com/juntossomosmais/venice#readme",
"repository": {
"type": "git",
"url": "https://github.com/juntossomosmais/venice.git"
},
"bugs": {
"url": "https://github.com/juntossomosmais/venice/issues"
},
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.20",
"node": ">= 12.0.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build:storybook": "yarn build:fontello && lerna run build:storybook",
"build:fontello": "fontello-cli install --config packages/venice-icons/config.json && node scripts/moveFontelloAssets.js",
"build": "yarn build:fontello && lerna run build",
"deploy:storybook-clean": "rimraf README.md packages package.json",
"deploy:storybook": "yarn build:storybook && gh-pages-deploy",
"format:css": "stylelint '**/*.scss' --fix",
"format:js": "prettier-eslint --write $PWD/'**/*.{js,ts,jsx,tsx,vue}' $PWD/'*.{js,ts}' && eslint . --ext js,ts,jsx,tsx,vue --fix",
"lint:css": "stylelint '**/*.scss'",
"lint": "eslint . --ext js,ts,jsx,tsx,vue",
"loki-test": "lerna run loki-test",
"loki-update": "lerna run loki-update",
"postinstall": "yarn build",
"publish": "lerna publish",
"start": "lerna run start --parallel",
"test:react": "yarn workspace @juntossomosmais/venice-react test:ci",
"test:vue": "yarn workspace @juntossomosmais/venice-vue test:ci",
"test": "run-p test:*"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@commitlint/config-conventional": "^14.1.0",
"@testing-library/jest-dom": "^5.11.9",
"@types/jest": "^25.1.4",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-loader": "^8.2.2",
"commitlint": "^12.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-mdx": "^1.9.0",
"eslint-plugin-prettier": "^3.3.1",
"fontello-cli": "^0.6.2",
"fs-extra": "^9.1.0",
"gh-pages-deploy": "^0.5.1",
"github-markdown-css": "^4.0.0",
"glob": "^7.1.6",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "12.3.7",
"loki": "^0.29.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"rollup": "^2.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.1",
"stylelint": "^13.11.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"ts-jest": "^26.5.5",
"typescript": "~3.8.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,vue}": [
"npx prettier --write",
"eslint **/*.js --fix-dry-run"
],
"*.scss": [
"stylelint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn test"
}
},
"gh-pages-deploy": {
"staticpath": "dist",
"post": [
"deploy:storybook-clean"
],
"noprompt": true
}
}