forked from pnp/sp-dev-fx-controls-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.21 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
{
"name": "@pnp/spfx-controls-react",
"description": "Reusable React controls for SharePoint Framework solutions",
"version": "2.5.0",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"test": "gulp test",
"serve": "gulp serve",
"prepublishOnly": "gulp",
"versionUpdater": "gulp versionUpdater",
"karma": "karma start --circle true",
"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",
"start:v8": "NODE_NO_HTTP2=1 gulp serve --nobrowser"
},
"dependencies": {
"@fluentui/react-northstar": "^0.51.3",
"@microsoft/decorators": "1.11.0",
"@microsoft/sp-core-library": "1.11.0",
"@microsoft/sp-listview-extensibility": "1.11.0",
"@microsoft/sp-lodash-subset": "1.11.0",
"@microsoft/sp-office-ui-fabric-core": "1.11.0",
"@microsoft/sp-webpart-base": "1.11.0",
"@pnp/sp": "2.0.6",
"@pnp/telemetry-js": "2.0.0",
"@uifabric/icons": "7.3.0",
"chart.js": "2.7.3",
"color": "3.1.2",
"lodash": "4.17.13",
"office-ui-fabric-react": "6.214.0",
"react": "16.8.5",
"react-accessible-accordion": "^3.3.3",
"react-dom": "16.8.5",
"react-quill": "1.3.5"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
"@microsoft/sp-build-web": "1.11.0",
"@microsoft/sp-module-interfaces": "1.11.0",
"@microsoft/sp-tslint-rules": "1.11.0",
"@microsoft/sp-webpart-workbench": "1.11.0",
"@types/chai": "3.4.34",
"@types/chart.js": "2.7.40",
"@types/enzyme": "2.8.7",
"@types/es6-promise": "0.0.33",
"@types/lodash": "4.14.149",
"@types/mocha": "2.2.38",
"@types/react": "16.8.8",
"@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.8.3",
"@types/sinon": "2.3.4",
"@types/webpack-env": "1.13.1",
"ajv": "~5.2.2",
"amd-loader": "0.0.8",
"codecov": "3.6.5",
"enzyme": "2.9.1",
"gulp": "~3.9.1",
"husky": "4.2.5",
"karma-html-reporter": "0.2.7",
"karma-remap-coverage": "^0.1.4",
"react-addons-test-utils": "15.6.0",
"request-promise": "4.2.5",
"sonarqube-scanner": "2.1.2",
"tslib": "2.0.0",
"webpack-bundle-analyzer": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pnp/sp-dev-fx-controls-react"
},
"license": "MIT",
"keywords": [
"sharepoint",
"office365",
"tools",
"spfx",
"framework"
],
"bugs": {
"url": "https://github.com/pnp/sp-dev-fx-controls-react/issues"
},
"main": "lib/index.js",
"homepage": "https://pnp.github.io/sp-dev-fx-controls-react/",
"contributors": [
"Gove, Russell <[email protected]>",
"Kent Chris <>",
"Rodrigues, Joel <>",
"Struyf, Elio <[email protected]>",
"Terentiev, Alex <[email protected]>"
],
"husky": {
"hooks": {
"pre-commit": "npm run changelog"
}
}
}