-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.88 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
{
"name": "my-apps",
"private": true,
"version": "4.1.0",
"dependencies": {
"@babel/runtime": "^7.22.6",
"@tiny/cookie": "workspace:^",
"@tiny/dragmove": "workspace:^",
"@tiny/events": "workspace:^",
"@tiny/querystring": "workspace:^",
"@tiny/utils": "workspace:^",
"esbuild": "latest"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^16.18.39",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-plugin-import": "latest",
"concurrently": "latest",
"cross-env": "^7.0.3",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-import-resolver-alias": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-prettier": "latest",
"husky": "latest",
"lint-staged": "latest",
"prettier": "latest",
"rimraf": "latest",
"typescript": "latest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://gitee.com/codefresh/my-apps.git"
},
"scripts": {
"dev:layouts": "pnpm -F layouts dev",
"build:dragmove": "pnpm -F @tiny/dragmove build",
"build:delegate": "pnpm -F @tiny/delegate build",
"build:events": "pnpm -F @tiny/events build",
"build:utils": "pnpm -F \"@tiny/*\" build",
"lint": "eslint packages @tiny",
"test": "jest"
},
"useWorkspaces": true,
"workspaces": [
"packages/*",
"@tiny/*",
"tools/*"
]
}