-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.5 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
{
"name": "liteflow",
"private": false,
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"lint": "npm run eslint && npm run prettier -- --check && npm run lint -ws --if-present",
"lint:fix": "npm run eslint -- --fix && npm run prettier -- --write",
"clean": "npm run clean -ws --if-present",
"eslint": "eslint \"**/*.{ts,tsx}\"",
"prettier": "prettier \"**/*.{js,ts,tsx,json,md}\"",
"test": "npm run test -ws --if-present",
"postinstall": "npm run graphql-codegen",
"build": "npm run build -ws --if-present",
"watch": "npm run build && concurrently -n core,react --kill-others \"npm run watch -w packages/core\" \"npm run watch -w packages/react\"",
"graphql-codegen": "npm run graphql-codegen -ws --if-present",
"release": "lerna publish from-package --no-private --force-publish --dist-tag latest --sync-workspace-lock --no-git-tag-version --yes"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@graphql-codegen/add": "^3.0.0",
"@lerna-lite/cli": "^1.9.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^5.1.3"
}
}