-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "applint-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"scripts": {
"setup": "yarn install && yarn build",
"eslint": "eslint --no-eslintrc --config ./.eslintrc.js --ext .js,.ts ./ --cache",
"eslint:fix": "yarn eslint --fix",
"clean": "rimraf packages/*/dist",
"build": "yarn clean && tsc --build ./tsconfig.json",
"watch": "yarn clean && tsc --build ./tsconfig.json --watch",
"test": "vitest",
"version": "changeset version && yarn install",
"publish": "yarn build && changeset publish",
"beta": "changeset pre enter beta && yarn run version && yarn run publish && changeset pre exit",
"alpha": "changeset pre enter alpha && yarn run version && yarn run publish && changeset pre exit"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"c8": "^7.12.0",
"eslint": "^8.0.0",
"husky": "^7.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"vitest": "^0.28.0"
},
"packageManager": "yarn@1.22.19",
"version": "0.0.0"
}