-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.22 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.22 KB
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
{
"name": "@pnp/spfx-property-controls",
"description": "Reusable property pane controls for SharePoint Framework solutions",
"version": "3.23.0",
"engines": {
"node": ">=22.14.0 < 23.0.0"
},
"scripts": {
"build": "heft test --clean --production && heft package-solution --production",
"clean": "heft clean",
"start": "heft start --clean",
"eject-webpack": "heft eject-webpack",
"serve": "fast-serve",
"versionUpdater": "heft version-updater",
"changelog": "node scripts/create-changelog.js && node scripts/sync-changelogs.js && heft version-updater",
"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": {
"@fluentui/react": "8.106.4",
"@fluentui/react-components": "^9.48.0",
"@microsoft/sp-adaptive-card-extension-base": "1.22.2",
"@microsoft/sp-core-library": "1.22.2",
"@microsoft/sp-lodash-subset": "1.22.2",
"@microsoft/sp-office-ui-fabric-core": "1.22.2",
"@microsoft/sp-property-pane": "1.22.2",
"@microsoft/sp-webpart-base": "1.22.2",
"@monaco-editor/loader": "^1.2.0",
"@pnp/telemetry-js": "2.0.0",
"@uifabric/icons": "7.5.17",
"brace": "0.11.1",
"lodash.omit": "4.5.0",
"markdown-to-jsx": "^6.11.4",
"monaco-editor": "^0.32.1",
"react": "17.0.1",
"react-ace": "10.1.0",
"react-dom": "17.0.1"
},
"devDependencies": {
"@microsoft/eslint-config-spfx": "1.22.2",
"@microsoft/eslint-plugin-spfx": "1.22.2",
"@microsoft/sp-module-interfaces": "1.22.2",
"@microsoft/spfx-heft-plugins": "1.22.2",
"@microsoft/spfx-web-build-rig": "1.22.2",
"@rushstack/eslint-config": "4.5.2",
"@rushstack/heft": "1.1.2",
"@types/chai": "4.3.4",
"@types/heft-jest": "1.0.2",
"@types/lodash": "4.14.191",
"@types/markdown-to-jsx": "6.11.3",
"@types/mocha": "8.2.2",
"@types/react": "17.0.45",
"@types/react-addons-shallow-compare": "0.14.22",
"@types/react-addons-test-utils": "15.6.0",
"@types/react-addons-update": "0.14.14",
"@types/react-dom": "17.0.17",
"@types/webpack-env": "~1.15.2",
"@typescript-eslint/parser": "8.46.2",
"amd-loader": "0.0.8",
"chai": "4.3",
"css-loader": "7.1.2",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "4.3.0",
"gulp": "^5.0.1",
"husky": "^6.0.0",
"request-promise": "4.2.6",
"sonarqube-scanner": "2.8.2",
"spfx-fast-serve-helpers": "1.20.2",
"typescript": "5.8.3",
"uuid": "^9.0.1"
},
"resolutions": {
"@types/react": "17.0.45"
},
"overrides": {
"@rushstack/heft": "1.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/pnp/sp-dev-fx-property-controls"
},
"license": "MIT",
"keywords": [
"sharepoint",
"microsoft365",
"m365",
"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": [],
"contributors": []
}