-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/presets/*",
"packages/templates/*"
]
},
"author": {
"name": "Romullo",
"email": "[email protected]",
"url": "https://hiukky.com"
},
"bugs": {
"url": "https://github.com/hiukky/minit/issues"
},
"homepage": "https://github.com/hiukky/minit#readme",
"repository": {
"type": "git",
"url": "https://github.com/hiukky/minit"
},
"scripts": {
"postinstall": "husky install",
"format": "prettier --write \"**/*.ts\"",
"lint": "yarn eslint \"**/*.ts\" --fix",
"test": "echo test",
"build": "lerna run build"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.0.9",
"lerna": "3.22.1",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
}
}