-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"private": true,
"description": "Seti theme monorepo",
"homepage": "https://setitheme.org",
"license": "MIT",
"workspaces": [
"packages/*",
"website/*"
],
"bolt": {
"workspaces": [
"./packages/*/*",
"./website/*/*"
]
},
"devEngines": {
"node": "12.x || 13.x || 14.x || 15.x"
},
"name": "setitheme",
"scripts": {
"lint": "pretty-quick --check --bail --pattern \"**/*.*(js|jsx|ts|tsx)\"",
"lint:fix": "pretty-quick --pattern \"**/*.*(js|jsx|ts|tsx)\"",
"publish:alpha": "lerna publish --canary --dist-tag beta",
"publish:beta": "lerna publish --dist-tag beta",
"publish:prod": "lerna publish --dist-tag latest"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"devDependencies": {
"@frosti/asguard": "^0.2.2",
"@octokit/core": "^3.2.5",
"colors": "1.3.x",
"depcheck": "^0.8.x",
"dictionary-en": "^3.0.1",
"figlet": "^1.2.x",
"lerna": "^3.22.1",
"minimist": "^1.2.x",
"node-emoji": "^1.10.x",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}