forked from Azure/api-management-developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 4.26 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "apim-developer-portal",
"version": "2.18.0",
"description": "API management developer portal",
"author": "Microsoft",
"license": "MIT",
"keywords": [
"azure"
],
"engines": {
"node": ">=14.18.2"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.develop.js",
"build": "webpack --config webpack.build.js",
"build-designer": "webpack --config webpack.designer.js",
"build-publisher": "webpack --config webpack.publisher.js",
"build-runtime": "webpack --config webpack.runtime.js",
"build-function": "webpack --config webpack.function.js",
"test": "node node_modules/mocha/bin/_mocha -r mocha.js src/**/*.spec.ts tests/e2e/**/*.spec.ts --timeout 30000",
"deploy-function": "npm run build-function && cd dist/function && func azure functionapp publish < function app name >",
"publish": "webpack --config webpack.publisher.js && node dist/publisher/index.js && npm run serve-website",
"serve-website": "webpack serve --open --static ./dist/website --no-stats",
"build-static-data": "webpack --config webpack.staticData.js && node dist/publisher/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"devDependencies": {
"@azure/storage-blob": "12.11.0",
"@types/chai": "^4.3.1",
"@types/google-maps": "^3.2.3",
"@types/knockout": "^3.4.72",
"@types/knockout.mapping": "^2.0.37",
"@types/knockout.validation": "0.0.38",
"@types/mime": "^2.0.3",
"@types/mocha": "9.1.1",
"@types/node": "^18.6.1",
"@types/puppeteer": "5.4.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"autoprefixer": "^10.4.7",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.20.0",
"file-loader": "^6.2.0",
"html-loader": "^4.1.0",
"mini-css-extract-plugin": "^2.6.1",
"mocha": "^10.0.0",
"path": "^0.12.7",
"postcss-loader": "^7.0.1",
"puppeteer": "15.5.0",
"querystring-es3": "^0.2.1",
"raw-loader": "^4.0.2",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"ts-node": "10.9.1",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.3",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@azure/msal-browser": "^2.28.0",
"@braintree/sanitize-url": "6.0.0",
"@microsoft/applicationinsights-web": "^2.8.5",
"@monaco-editor/loader": "^1.3.2",
"@paperbits/azure": "0.1.521",
"@paperbits/common": "0.1.521",
"@paperbits/core": "0.1.521",
"@paperbits/prosemirror": "0.1.521",
"@paperbits/styles": "0.1.521",
"@webcomponents/custom-elements": "1.5.0",
"@webcomponents/shadydom": "^1.9.0",
"client-oauth2": "4.3.3",
"codemirror": "^5.65.5",
"core-js": "^3.24.0",
"d3": "7.6.1",
"file-saver": "^2.0.5",
"google-maps": "^4.3.3",
"graphql": "^15.5.0",
"graphql-config": "^4.0.1",
"graphql-language-service": "^3.1.4",
"idb-keyval": "^6.2.0",
"js-beautify": "^1.14.4",
"knockout": "^3.5.1",
"knockout-mapping": "^2.6.0",
"knockout.validation": "^2.0.4",
"liquidjs": "^9.39.2",
"lunr": "^2.3.9",
"mime": "^3.0.0",
"moment": "^2.29.4",
"monaco-editor": "^0.29.1",
"msal": "^1.4.16",
"prettier": "^2.7.1",
"prismjs": "^1.28.0",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"saxen": "^8.1.2",
"topojson-client": "^3.1.0",
"truncate-html": "^1.0.4"
}
}