-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.83 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.83 KB
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
{
"type": "module",
"scripts": {
"dev": "npm run docs:dev",
"docs:dev": "vitepress dev docs",
"update-version": "echo '{\"version\":\"'$(date +%s)'\"}' > docs/public/version.json",
"build": "npm run update-version && npm run docs:build",
"docs:build": "vitepress build docs",
"preview": "npm run docs:preview",
"docs:preview": "vitepress preview docs",
"test": "npx eslint .",
"deploy": "npm run update-version && npm run docs:build && bash ./deploy && rm -r ./docs/.vitepress/dist",
"deploy-staging": "UMAMI_WEBSITE_ID=7e078a27-082b-4e1b-bd8c-f964d2f4896d ENV=staging npm run deploy",
"deploy-production": "UMAMI_WEBSITE_ID=626b2789-c45f-4be2-b159-c218d47d3d2f ENV=prod npm run deploy",
"deploy-all": "npm run deploy-staging && npm run deploy-production",
"find-broken-links": "bash ./find-broken-links"
},
"dependencies": {
"body-scroll-lock": "^4.0.0-beta.0",
"compromise": "^14.10.0",
"concurrently": "^9.2.1",
"globby": "^14.1.0",
"gray-matter": "^4.0.3",
"jsdom": "^22.1.0",
"marked": "^12.0.2",
"socket.io-client": "^4.7.5",
"swagger-ui-dist": "^5.30.3",
"uuid": "^10.0.0",
"vitepress-plugin-pagefind": "^0.2.4",
"vue": "^3.3.4",
"vue-inline-svg": "^3.1.2",
"vue-router": "^4.2.3",
"wait-on": "^9.0.1"
},
"devDependencies": {
"axios": "^1.7.2",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.48.0",
"eslint-config-apostrophe": "^4.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"sass": "^1.64.2",
"sitemap": "^7.1.1",
"stylelint": "^15.10.3",
"stylelint-config-apostrophe": "^3.0.0",
"stylelint-plugin-stylus": "^0.18.0",
"vitepress": "^1.0.0",
"vitepress-plugin-search": "1.0.4-alpha.22"
}
}