-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.66 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": "root",
"version": "1.0.0",
"engines": {
"node": "14.16.1",
"pnpm": "7.14.0"
},
"keywords": [],
"scripts": {
"qnweb-live-demo:dev": "pnpm -F qnweb-live-demo dev",
"qnweb-live-demo:build:staging": "pnpm -F qnweb-live-demo build:staging",
"qnweb-live-demo:build": "pnpm -F qnweb-live-demo build",
"qnweb-audit-admin:dev": "pnpm -F qnweb-audit-admin dev",
"qnweb-audit-admin:build:staging": "pnpm -F qnweb-audit-admin build:staging",
"qnweb-audit-admin:build": "pnpm -F qnweb-audit-admin build:prod",
"release": "ar-changelog release",
"changeset": "changeset",
"cz": "git-cz",
"lint": "eslint 'packages/**/src/**/*.{ts,tsx}'",
"lint-fix": "eslint --fix 'packages/**/src/**/*.{ts,tsx}'",
"pretty": "prettier --write 'packages/**/src/**/*.{ts,tsx}'",
"pretty-check": "prettier --check 'packages/**/src/**/*.{ts,tsx}'",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
]
},
"devDependencies": {
"@changesets/cli": "^2.23.1",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"ar-changelog": "^4.0.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1"
}
}