-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"lint": "lerna run lint",
"test": "lerna run test"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"babel-jest": "^29.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"prettier": "2.8.8",
"shx": "^0.3.2",
"ts-jest": "29.2.5",
"typedoc": "^0.23.24",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"./node_modules/.bin/eslint \"packages/**/*.{js,ts}\" --quiet --fix",
"git add"
]
},
"dependencies": {
"axios": "^1.2.3"
}
}