-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 3.27 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
80
81
82
83
84
{
"name": "memrise",
"version": "1.0.0",
"author": "fatehak",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/FatehAK/memrise"
},
"scripts": {
"start": "vite",
"build:dev": "vite build --mode development",
"build:prod": "vite build",
"preview": "vite preview",
"analyze": "open ./reports/build-stats.html",
"clean": "pnpm rimraf reports dist node_modules/.vite node_modules/.cache",
"lint": "concurrently -g -n \"prettier,stylelint,eslint\" -c \"bgGreen.bold,bgMagenta.bold,bgBlue.bold\" \"pnpm prettier-check\" \"pnpm stylelint-check\" \"pnpm eslint-check\"",
"lint:fix": "pnpm eslint-fix && pnpm stylelint-fix && pnpm prettier-fix",
"prettier-check": "prettier --loglevel warn --cache --cache-strategy content --cache-location ./node_modules/.cache/.prettiercache --check .",
"prettier-fix": "prettier --loglevel warn --cache --cache-strategy content --cache-location ./node_modules/.cache/.prettiercache --write .",
"stylelint-check": "stylelint --max-warnings=25 --custom-formatter=node_modules/stylelint-formatter-pretty --aei --cache --cache-strategy content --cache-location ./node_modules/.cache/.stylelintcache '{**/*,*}.{html,css}'",
"stylelint-fix": "pnpm stylelint-check --fix",
"eslint-check": "eslint --max-warnings=25 --format=pretty --cache --cache-strategy content --cache-location ./node_modules/.cache/.eslintcache '{**/*,*}.{html,js}'",
"eslint-fix": "pnpm eslint-check --fix",
"prepare": "husky install",
"lint-staged": "lint-staged",
"cz": "czg"
},
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"dependencies": {
"sanitize.css": "^13.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@html-eslint/eslint-plugin": "^0.32.0",
"@html-eslint/parser": "^0.32.0",
"@rollup/plugin-strip": "^3.0.4",
"@vitejs/plugin-legacy": "^4.1.1",
"browserslist-to-esbuild": "^1.2.0",
"change-case": "^4.1.2",
"concurrently": "^8.2.2",
"czg": "1.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-sonarjs": "^0.25.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"postcss-html": "^1.8.0",
"postcss-nested": "^6.2.0",
"postcss-preset-env": "^8.5.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.10",
"rollup-plugin-visualizer": "^5.13.1",
"sharp": "^0.33.5",
"stylelint": "^15.11.0",
"stylelint-config-clean-order": "^5.4.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-formatter-pretty": "^3.2.1",
"stylelint-order": "^6.0.4",
"svgo": "^3.3.1",
"terser": "^5.37.0",
"vite": "^4.5.5",
"vite-plugin-html-config": "^1.0.11",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-minify": "^1.5.2",
"vite-plugin-pwa": "^0.21.1"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}