forked from kumahq/kuma-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 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
{
"name": "kuma-website",
"description": "The website and docs for Konvoy.",
"author": "Kong Inc.",
"scripts": {
"docs:dev": "node ./bin/build-pub-manifest && vuepress dev docs",
"docs:build": "node ./bin/build-pub-manifest && vuepress build docs",
"test": "yarn jest",
"test-coverage": "yarn jest --coverage",
"postinstall": "cd bin/kumacut && npm i"
},
"bin": {
"kumacut": "./bin/kumacut/index.js"
},
"resolutions": {
"serialize-javascript": "^2.1.1"
},
"dependencies": {
"@babel/preset-env": "^7.5.5",
"@kongponents/ktabs": "^0.1.2",
"@kongponents/styles": "^0.2.0",
"animejs": "^3.1.0",
"axios": "^0.19.0",
"core-js": "^3.2.1",
"dotenv": "^8.2.0",
"vee-validate": "^3.0.4",
"vue": "^2.6.11",
"vue-github-button": "^1.0.8",
"vue-tabs-component": "^1.5.0",
"vuepress-plugin-tabs": "^0.3.0"
},
"devDependencies": {
"@babel/plugin-transform-object-assign": "^7.2.0",
"@vue/test-utils": "^1.0.0-beta.29",
"@vuepress/plugin-google-analytics": "^1.0.0-rc.1",
"@vuepress/plugin-medium-zoom": "^1.0.0-rc.1",
"babel-jest": "^24.8.0",
"directory-tree": "^2.2.4",
"jest": "^24.8.0",
"jest-raw-loader": "^1.0.1",
"latest-semver": "^2.0.0",
"markdown-it": "^10.0.0",
"markdown-it-for-inline": "^0.1.1",
"markdown-it-include": "^1.1.0",
"markdown-it-meta": "^0.0.1",
"node-sass": "^4.13.1",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"raw-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"tailwindcss": "^1.0.4",
"to-semver": "^2.0.0",
"vue-jest": "^3.0.4",
"vuepress": "^1.1.0",
"vuepress-plugin-clean-urls": "^1.0.3",
"vuepress-plugin-seo": "^0.1.2",
"vuepress-plugin-sitemap": "^2.1.2",
"vuex": "^3.1.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue",
"svg"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".+\\.svg$": "jest-raw-loader"
},
"testURL": "http://localhost/",
"transformIgnorePatterns": [
"<rootDir>/node_modules"
]
}
}