forked from Azure/api-management-developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 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
102
103
104
105
106
107
108
{
"name": "apim-developer-portal",
"version": "2.11.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"
},
"devDependencies": {
"@azure/storage-blob": "12.8.0",
"@types/chai": "^4.3.0",
"@types/google-maps": "^3.2.3",
"@types/knockout": "^3.4.71",
"@types/knockout.mapping": "^2.0.37",
"@types/knockout.validation": "0.0.38",
"@types/mime": "^2.0.3",
"@types/mocha": "9.1.0",
"@types/node": "^17.0.17",
"@types/puppeteer": "5.4.4",
"autoprefixer": "^10.4.2",
"buffer": "^6.0.3",
"chai": "^4.3.6",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"file-loader": "^6.2.0",
"html-loader": "^3.1.0",
"mini-css-extract-plugin": "^2.5.3",
"mocha": "^9.2.0",
"path": "^0.12.7",
"postcss-loader": "^6.2.1",
"puppeteer": "13.3.1",
"querystring-es3": "^0.2.1",
"raw-loader": "^4.0.2",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"ts-node": "10.5.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"webpack": "5.68.0",
"webpack-cli": "4.9.2 ",
"webpack-dev-server": "4.7.4",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@braintree/sanitize-url": "^5.0.2",
"@monaco-editor/loader": "^1.2.0",
"@paperbits/azure": "0.1.486",
"@paperbits/common": "0.1.486",
"@paperbits/core": "0.1.486",
"@paperbits/prosemirror": "0.1.486",
"@paperbits/styles": "0.1.486",
"@webcomponents/custom-elements": "1.5.0",
"@webcomponents/shadydom": "^1.9.0",
"applicationinsights-js": "^1.0.21",
"client-oauth2": "4.3.3",
"codemirror": "^5.65.1",
"core-js": "^3.21.0",
"d3": "^5.11.0",
"google-maps": "^4.3.3",
"graphql": "^15.5.0",
"graphql-config": "^4.0.1",
"graphql-language-service": "^3.1.4",
"js-beautify": "^1.14.0",
"knockout": "^3.5.1",
"knockout-mapping": "^2.6.0",
"knockout.validation": "^2.0.4",
"liquidjs": "^9.34.0",
"lunr": "^2.3.9",
"mime": "^3.0.0",
"moment": "^2.29.1",
"monaco-editor": "^0.29.1",
"msal": "^1.4.16",
"prettier": "^2.5.1",
"prismjs": "^1.26.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"
}
}