This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
forked from rahulbhooteshwar/snippet-highlight
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.33 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
76
77
78
79
{
"name": "root",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"clean": "node scripts/clean.mjs",
"lint": "eslint packages/ --fix --ext ts,tsx",
"format": "prettier --write --loglevel=warn \"packages/**/src/**\"",
"prebuild": "yarn clean",
"start": "yarn workspace @favware/syntax-highlighter-core start",
"build": "run-s build:core build:react",
"postbuild": "yarn lint && yarn format",
"build:core": "yarn workspace @favware/syntax-highlighter-core build",
"build:react": "yarn workspace @favware/syntax-highlighter-react build",
"commit": "git-cz",
"cz": "git-cz",
"update": "yarn upgrade-interactive --latest",
"prepare": "husky install .github/husky"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@sapphire/eslint-config": "^4.0.0",
"@sapphire/prettier-config": "^1.2.2",
"@sapphire/ts-config": "^3.1.1",
"@types/clipboard": "^2.0.7",
"@types/prismjs": "^1.16.6",
"@stencil/react-output-target": "^0.0.9",
"@types/node": "^16.10.3",
"@types/react": "17.0.28",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.13.4",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": "^11.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.58.0",
"rollup-plugin-dts": "^4.0.0",
"ts-node": "^10.3.0",
"typescript": "^4.4.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts,tsx}": "eslint --fix --ext mjs,js,ts,tsx"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"acorn": "^8.4.1",
"minimist": "^1.2.5",
"kind-of": "^6.0.3",
"dot-prop": "^6.0.1",
"tar": "^6.1.6",
"trim-newlines": "^3.0.1"
}
}