-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 936 Bytes
/
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
{
"name": "pine",
"version": "0.1.0",
"description": "",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint:staged": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IsaacAderogba/pine.git"
},
"keywords": [],
"author": "Isaac Aderogba",
"license": "ISC",
"bugs": {
"url": "https://github.com/IsaacAderogba/pine/issues"
},
"homepage": "https://github.com/IsaacAderogba/pine#readme",
"devDependencies": {
"@types/node": "^18.6.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lerna": "^5.3.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}