-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "silenzio",
"version": "0.0.2-beta.1",
"private": true,
"dependencies": {
"lodash": "^4.17.21"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lerna": "^8.1.3",
"prettier": "^3.3.2",
"rollup-plugin-dts": "^6.1.1",
"sanity": "^3.46.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"sanity": "^3.16.7"
},
"description": "Michele Bruno's utility library",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint --fix . && prettier --write .",
"prepare": "husky"
},
"author": "Michele Bruno",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/michelebruno/silenzio.git"
}
}