-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
70 lines (70 loc) · 2.34 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
{
"name": "gazelle",
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "vite",
"build": "concurrently yarn:build:vite yarn:build:themes yarn:build:publicstyle",
"build:vite": "vite build",
"build:themes": "vite build -c vite.themes.config.js; vite build -c vite.themes-github.config.js",
"build:publicstyle": "vite build -c vite.publicstyle.config.js",
"test": "jest",
"lint": "eslint . --ignore-path .gitignore",
"lint:css": "stylelint \"sass/**/*.scss\" || exit 0",
"lint:css-checkstyle": "stylelint \"sass/**/*.scss\" --custom-formatter ./node_modules/stylelint-checkstyle-formatter/index.js || exit 0",
"lint:php:internal": "find . -path './vendor' -prune -o -path ./node_modules -prune -o -path './.docker' -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v \"No syntax errors detected\" )",
"lint:php:phpcs": "vendor/bin/phpcs -p",
"lint:php": "yarn lint:php:internal && yarn lint:php:phpcs",
"lint:php:fix": "./.bin/phpcbf",
"pre-commit": "yarn lint:php:fix"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.3.1",
"debug": "^4.3.1",
"delay": "^5.0.0",
"highcharts": "^10.1.0",
"highcharts-react-official": "^3.1.0",
"jquery": "^3.6.0",
"lodash-es": "^4.17.21",
"pixelmatch": "^5.2.1",
"preact": "^10.6.4",
"prop-types": "^15.8.1",
"react-resize-detector": "^7.1.2",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@mdx-js/react": "^2.1.2",
"@mdx-js/rollup": "^2.0.0",
"@preact/preset-vite": "^2.1.7",
"@rollup/plugin-yaml": "^3.1.0",
"@vitejs/plugin-react": "^1.1.4",
"alias-hq": "^5.4.0",
"concurrently": "^7.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.0",
"postcss-dark-theme-class": "^0.7.3",
"prettier": "^2.3.0",
"puppeteer": "^2.1.1",
"remark-extended-table": "^1.0.0",
"vite": "^2.7.13"
},
"lint-staged": {
"**/*": [
"prettier --write"
]
},
"browserslist": [
"last 2 years and > 0.1%"
]
}