-
Notifications
You must be signed in to change notification settings - Fork 596
/
package.json
67 lines (67 loc) · 1.59 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
{
"private": true,
"version": "1.0.0",
"name": "docs.konghq.com",
"homepage": "https://docs.konghq.com",
"repository": "Kong/docs.konghq.com",
"license": "proprietary",
"scripts": {
"dev": "bundle exec foreman start",
"test": "jest",
"test:smoke": "npm run test"
},
"standard": {
"ignore": [
"dist/**",
"vendor/**",
"node_modules/**",
"Dockerfile",
"app/_assets/javascripts/*",
"app/_redirects"
]
},
"devDependencies": {
"@rollup/plugin-inject": "^5.0.3",
"@vitejs/plugin-vue": "^5.0.0",
"broken-link-checker": "0.7.8",
"browser-sync": "3.0.3",
"cheerio": "1.0.0",
"fancy-log": "2.0.0",
"jest": "29.7.0",
"less": "^4.1.3",
"lodash": "4.17.21",
"netlify-cli": "17.37.2",
"node-fetch": "2.7.0",
"postcss-custom-properties": "^14.0.0",
"prettier": "3.3.3",
"sass": "^1.63.6",
"skeleton-css": "2.0.4",
"vite": "^5.0.0",
"vite-plugin-ruby": "^5.0.0"
},
"jest": {
"testMatch": [
"**/tests/**.test.js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/__utils__/customMatchers.js",
"<rootDir>/tests/__utils__/fetchPage.js"
],
"testPathIgnorePatterns": [
"/__utils__/"
]
},
"dependencies": {
"@kong-ui-public/spec-renderer": "2.3.8",
"@kong/kongponents": "9.14.8",
"@kong/sdk-portal-js": "^2.14.0",
"algoliasearch": "^5.0.0",
"instantsearch.css": "^8.1.0",
"jquery": "3.7.1",
"js-cookie": "^3.0.1",
"js-yaml": "^4.1.0",
"vue": "^3.3.4",
"vue-instantsearch": "^4.12.1",
"vue-router": "^4.2.4"
}
}