This repository was archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.45 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.45 KB
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
{
"private": true,
"workspaces": [
"docs",
"packages/*"
],
"scripts": {
"prepare": "yarn workspaces run prepare",
"version": "changeset version && yarn run format",
"release": "changeset publish",
"prettier": "prettier . --ignore-path .gitignore",
"lint": "yarn run lint:eslint && yarn run lint:prettier",
"lint:eslint": "eslint . --ignore-path .gitignore",
"lint:prettier": "yarn run prettier --check",
"format": "yarn run format:eslint && yarn run format:prettier",
"format:eslint": "yarn run lint:eslint --fix",
"format:prettier": "yarn run prettier --write",
"test": "yarn run test:components && yarn run test:components && yarn run test:preset",
"test:assets": "yarn run package-check --cwd ./packages/assets",
"test:components": "yarn run package-check --cwd ./packages/components",
"test:preset": "yarn run package-check --cwd ./packages/preset",
"purge": "rm -rf ./node_modules && yarn workspaces run purge"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@changesets/cli": "^2.14.1",
"@maiertech/eslint-config": "^0.17.1",
"@maiertech/prettier-config": "^0.3.0",
"@skypack/package-check": "^0.2.2",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.2",
"microbundle": "^0.13.0",
"micromatch": "^4.0.2",
"prettier": "^2.2.1"
}
}