This repository has been archived by the owner on Feb 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
75 lines (75 loc) · 1.95 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
68
69
70
71
72
73
74
75
{
"name": "next-mdx-monorepo",
"private": true,
"workspaces": [
"packages/*",
"starters/*",
"examples/*",
"benchmarks",
"www"
],
"scripts": {
"dev": "lerna run dev --parallel",
"test": "jest",
"format": "prettier --write \"**/*.js{,on}\" \"**/*.mdx\"",
"prepare": "lerna run prepare",
"lint": "eslint --cache --ext .js,.jsx .",
"watch": "yarn workspace next-mdx watch",
"benchmark": "yarn workspace next-mdx-benchmarks benchmark",
"sync:starters": "./scripts/sync.sh \"starters/*\"",
"sync:examples": "./scripts/sync.sh \"examples/*\"",
"deploy": "./scripts/deploy-www.sh www"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"testMatch": [
"**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/.cache/",
"/dist/"
]
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.9.6",
"@types/node": "^14.14.7",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-mdx": "^1.7.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lerna": "^3.20.2",
"microbundle": "^0.12.1",
"mock-fs": "^4.13.0",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"typescript": "^4.0.5"
},
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^9.1.2"
}
}