-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·101 lines (101 loc) · 3.7 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@myparcel/developer-portal",
"version": "0.0.1",
"private": true,
"description": "MyParcel Developer Portal",
"homepage": "https://developer.myparcel.nl",
"bugs": {
"url": "https://github.com/myparcelnl/developer/issues"
},
"repository": "github:myparcelnl/developer",
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"type": "module",
"scripts": {
"build": "yarn optimize:svg -q && vuepress build src",
"dev": "vuepress dev src",
"postinstall": "yarn translations:init && (is-ci || husky install)",
"optimize:svg": "svgo -r --multipass --final-newline --folder src/.vuepress/public",
"preview": "http-server src/.vuepress/dist -s --port 9599",
"test": "concurrently test:vitest:run yarn:test:links",
"test:links": "WAIT_ON_TIMEOUT=30000 start-server-and-test preview http://127.0.0.1:9599 test:links:run",
"test:links:run": "hyperlink -ir --root src/.vuepress/dist http://127.0.0.1:9599",
"test:vitest": "vitest",
"test:vitest:run": "vitest run",
"translations:import": "echo 'Importing translations...' && google-docs-importer -d 1q_las2AW8vZqhyiymXnPtrCsNQsye9W0Aqi3aWymjuU -o src/.vuepress/public/translations && echo 'Done!'",
"translations:init": "test -f src/.vuepress/public/translations/en.json || yarn translations:import",
"watch": "nodemon --ext ts,vue,md --watch src --exec 'vuepress build src --debug'"
},
"lint-staged": {
"package.json": "npx sort-package-json",
"src/**/*.{js,cjs,mjs,ts,vue}": "eslint --fix",
"test/**/*.{js,cjs,mjs,ts,vue}": "eslint --fix",
"src/**/*.svg": "svgo --multipass --final-newline",
"**/*.{md,mdx,html,css,scss}": "prettier --write"
},
"prettier": "@myparcel/prettier-config",
"resolutions": {
"vite": "^4.0.0"
},
"dependencies": {
"@vue/runtime-core": "^3.2.37",
"@vuepress/plugin-docsearch": "2.0.0-beta.67",
"@vuepress/plugin-google-analytics": "2.0.0-beta.67",
"@vuepress/plugin-register-components": "2.0.0-beta.67",
"@vueuse/core": "^10.5.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"tailwindcss": "^3.1.6",
"vue-recaptcha": "^2.0.2",
"vuepress": "2.0.0-beta.67"
},
"devDependencies": {
"@edielemoine/google-docs-importer": "^1.0.2",
"@myparcel-eslint/eslint-config-esnext": "^1.2.3",
"@myparcel-eslint/eslint-config-import": "^1.2.1",
"@myparcel-eslint/eslint-config-node": "^1.2.3",
"@myparcel-eslint/eslint-config-prettier": "^1.2.3",
"@myparcel-eslint/eslint-config-prettier-typescript": "^1.2.4",
"@myparcel-eslint/eslint-config-prettier-typescript-vue": "^1.2.6",
"@myparcel/constants": "^2.0.0",
"@tsconfig/node18": "^18.2.2",
"@types/flat": "^5.0.2",
"@types/lodash-es": "^4.17.6",
"@types/mock-fs": "^4.13.1",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/test-utils": "^2.0.2",
"autoprefixer": "^10.4.8",
"concurrently": "^8.2.1",
"cssnano": "^6.0.1",
"dayjs": "^2.0.0-alpha.4",
"eslint": "^8.40.0",
"flat": "^6.0.1",
"gray-matter": ">= 4.0",
"happy-dom": "^12.6.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"hyperlink": "^5.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"lodash-unified": "^1.0.2",
"markdown-it-multimd-table": "^4.1.3",
"mock-fs": "^5.1.2",
"only-allow": "^1.1.1",
"openapi-types": "^12.1.3",
"plop": "^4.0.0",
"postcss-import": "^15.1.0",
"prettier": "^2.8.8",
"rollup-plugin-visualizer": "^5.7.1",
"start-server-and-test": "^2.0.1",
"svgo": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite-svg-loader": "^4.0.0",
"vitest": "^0.34.6",
"yaml": "^2.4.1"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.18.0"
}
}