forked from illright/attractions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 2.02 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
{
"license": "MIT",
"private": true,
"scripts": {
"lint-js": "eslint . --ext \".svelte,.js\" --cache",
"lint-js:fix": "pnpm run lint-js -- --fix",
"lint-css": "stylelint . --cache",
"lint-css:fix": "pnpm run lint-css -- --fix",
"lint-svelte": "svelte-check --workspace attractions --diagnostic-sources svelte,css --output human --fail-on-warnings && svelte-check --workspace docs --diagnostic-sources svelte,css --output human --fail-on-warnings --ignore \"src/node_modules\"",
"lint-svelte:fix": "svelte-check --workspace attractions && svelte-check --workspace docs --ignore \"src/node_modules\"",
"lint-format": "prettier --plugin-search-dir=. --check .",
"lint-format:fix": "prettier --plugin-search-dir=. --write --loglevel warn .",
"lint": "pnpm run lint-js && pnpm run lint-css && pnpm run lint-svelte && pnpm run lint-format",
"lint:fix": "pnpm run lint-js:fix && pnpm run lint-css:fix && pnpm run lint-svelte:fix && pnpm run lint-format:fix",
"docs:export": "pnpm run --dir docs export",
"docs:build": "pnpm run --dir docs build",
"docs:dev": "pnpm run --dir docs dev",
"build": "pnpm run --dir attractions build",
"prepare": "is-ci || husky install",
"format": "prettier --plugin-search-dir . --write ."
},
"workspaces": [
"attractions",
"docs"
],
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.3",
"eslint": "8.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.0",
"prettier-plugin-svelte": "^2.7.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"svelte": "^3.48.0",
"svelte-check": "^2.7.2",
"typescript": "^4.7.4"
}
}