forked from Azure/api-management-developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.11 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
{
"name": "apim-developer-portal",
"version": "2.0.0",
"description": "API management developer portal",
"author": "Microsoft",
"license": "MIT",
"keywords": [
"azure"
],
"engines": {
"node": ">=10.12"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.develop.js",
"test": "node node_modules/mocha/bin/_mocha -r mocha.js **/*.spec.ts",
"publish": "npm run build-publisher && node ./dist/publisher/index.js",
"build-designer": "webpack --config webpack.build.js",
"build-publisher": "webpack --config webpack.publisher.js",
"build-function": "webpack --config webpack.function.js",
"deploy-function": "npm run build-function && cd dist/function && func azure functionapp publish < function app name >",
"postinstall": "npm rebuild node-sass"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/google-maps": "^3.2.1",
"@types/knockout": "^3.4.66",
"@types/knockout.mapping": "^2.0.35",
"@types/knockout.validation": "0.0.37",
"@types/lodash": "^4.14.149",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.6",
"autoprefixer": "^9.7.3",
"awesome-typescript-loader": "^5.2.1",
"azure-storage": "^2.10.3",
"chai": "^4.2.0",
"clean-webpack-plugin": "2.0.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.0.0",
"node-sass": "^4.13.0",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"raw-loader": "^4.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.2",
"terser-webpack-plugin": "^2.3.2",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "3.7.4",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@paperbits/azure": "0.1.207",
"@paperbits/common": "0.1.207",
"@paperbits/core": "0.1.207",
"@paperbits/prosemirror": "0.1.207",
"@paperbits/styles": "0.1.207",
"@webcomponents/custom-elements": "^1.3.2",
"@webcomponents/shadydom": "^1.7.1",
"adal-vanilla": "^1.0.18",
"applicationinsights-js": "^1.0.20",
"core-js": "^3.6.3",
"d3": "^5.15.0",
"google-maps": "^4.2.0",
"js-beautify": "^1.10.2",
"knockout": "^3.5.1",
"knockout-mapping": "^2.6.0",
"knockout.validation": "^2.0.4",
"liquidjs": "^9.6.2",
"lodash": "^4.17.15",
"lunr": "^2.3.8",
"moment": "^2.24.0",
"msal": "^1.2.0",
"prismjs": "^1.19.0",
"remark": "^11.0.2",
"remark-html": "^10.0.0",
"slick": "^1.12.2",
"topojson-client": "^3.1.0",
"xhr2": "^0.2.0"
}
}