forked from pnp/sp-dev-fx-property-controls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.02 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
{
"name": "@pnp/spfx-property-controls",
"description": "Reusable property pane controls for SharePoint Framework solutions",
"version": "3.7.0",
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"test": "gulp test",
"serve": "gulp bundle --custom-serve --max_old_space_size=4096 && fast-serve",
"versionUpdater": "gulp versionUpdater",
"prepublishOnly": "gulp",
"changelog": "node scripts/create-changelog.js && node scripts/sync-changelogs.js && gulp versionUpdater",
"postinstall": "node postinstall/install.js",
"sonarcloud:config": "node ./scripts/sonarcloud.js",
"sonarcloud:start": "gulp sonarqube --gulpfile gulpfile.sonarqube.js",
"localization": "node scripts/execute-translation.js",
"prepare": "husky install"
},
"dependencies": {
"@microsoft/sp-core-library": "1.14.0",
"@microsoft/sp-lodash-subset": "1.14.0",
"@microsoft/sp-office-ui-fabric-core": "1.14.0",
"@microsoft/sp-property-pane": "1.14.0",
"@microsoft/sp-webpart-base": "1.14.0",
"@monaco-editor/loader": "^1.2.0",
"@pnp/common": "1.3.11",
"@pnp/logging": "1.3.11",
"@pnp/odata": "1.3.11",
"@pnp/sp": "1.3.11",
"@pnp/sp-clientsvc": "1.3.11",
"@pnp/sp-taxonomy": "1.3.11",
"@pnp/telemetry-js": "2.0.0",
"@uifabric/icons": "7.5.17",
"lodash.omit": "4.5.0",
"markdown-to-jsx": "^6.11.4",
"monaco-editor": "^0.32.1",
"office-ui-fabric-react": "7.174.1",
"react": "16.13.1",
"react-ace": "5.8.0",
"react-dom": "16.13.1"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-3.7": "0.2.3",
"@microsoft/rush-stack-compiler-3.9": "0.4.47",
"@microsoft/sp-build-web": "1.14.0",
"@microsoft/sp-module-interfaces": "1.14.0",
"@microsoft/sp-tslint-rules": "1.14.0",
"@types/chai": "4.2.15",
"@types/lodash": "4.14.149",
"@types/mocha": "8.2.2",
"@types/react": "16.9.51",
"@types/react-addons-shallow-compare": "0.14.17",
"@types/react-addons-test-utils": "0.14.15",
"@types/react-addons-update": "0.14.14",
"@types/react-dom": "16.9.8",
"@types/webpack-env": "1.13.1",
"ajv": "~5.2.2",
"amd-loader": "0.0.8",
"gulp": "4.0.2",
"husky": "^6.0.0",
"request-promise": "4.2.6",
"sonarqube-scanner": "2.1.2",
"spfx-fast-serve-helpers": "~1.13.0",
"typescript": "3.7.7"
},
"repository": {
"type": "git",
"url": "https://github.com/pnp/sp-dev-fx-property-controls"
},
"license": "MIT",
"keywords": [
"sharepoint",
"office365",
"tools",
"spfx",
"sharepoint framework"
],
"bugs": {
"url": "https://github.com/pnp/sp-dev-fx-property-controls/issues"
},
"homepage": "https://pnp.github.io/sp-dev-fx-property-controls/",
"main": "lib/index.js",
"maintainers": [
{
"name": "estruyf",
"email": "elio@struyfconsulting.be"
}
],
"contributors": [
"Gove, Russell <russellgove@gmail.com>",
"Kent, Chris <>",
"Opdendries, David <>",
"Struyf, Elio <elio@struyfconsulting.be>",
"Terentiev, Alex <>"
]
}