forked from good-idea/sane-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
{
"name": "sane-shopify-monorepo-root",
"private": true,
"license": "MIT",
"scripts": {
"setup": "yarn install && lerna run setup",
"ncu": "lerna exec -- ncu",
"ncu:u": "lerna exec -- ncu -u && lerna bootstrap",
"fix": "lerna run fix",
"bootstrap": "lerna bootstrap",
"typesync": "lerna exec -- typesync && lerna bootstrap",
"test": "lerna run test",
"test:coverage:send": "echo 'No tests yet, write some tests!'",
"build": "lerna run build",
"lint": "lerna run test:lint",
"start": "lerna run build && lerna run start --parallel",
"release": "lerna publish --yes"
},
"workspaces": [
"packages/types",
"packages/sync-utils",
"packages/server",
"packages/sanity-plugin"
],
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "=6",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"markdown-toc-gen": "^0.4.4",
"nodemon": "^2.0.7",
"npm-check-updates": "^11.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.1",
"tsc-watch": "^4.4.0",
"tsdx": "^0.14.1",
"typescript": "^4.3.2",
"typesync": "^0.8.0",
"yalc": "^1.0.0-pre.53"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"**/*.md": "markdown-toc-gen insert",
"*.ts": "eslint --cache",
"*.tsx": "eslint --cache"
},
"dependencies": {}
}