-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "spfx-proxy-example",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "gulp bundle",
"clean": "gulp clean",
"test": "gulp test",
"proxy": "node ./proxy",
"serve": "concurrently --kill-others \"npm run proxy\" \"gulp serve\""
},
"dependencies": {
"@microsoft/sp-core-library": "~1.8.0",
"@microsoft/sp-lodash-subset": "~1.8.0",
"@microsoft/sp-office-ui-fabric-core": "~1.8.0",
"@microsoft/sp-webpart-base": "~1.20.0",
"@types/react": "16.8.8",
"@types/react-addons-shallow-compare": "0.14.22",
"@types/react-addons-test-utils": "0.14.24",
"@types/react-addons-update": "0.14.20",
"@types/react-dom": "16.8.2",
"@types/webpack-env": ">=1.12.1 <1.14.0",
"react": "16.8.4",
"react-dom": "16.8.4",
"sp-pnp-js": "^3.0.10"
},
"devDependencies": {
"@microsoft/sp-build-web": "~1.8.0",
"@microsoft/sp-module-interfaces": "~1.8.0",
"@microsoft/sp-webpart-workbench": "~1.8.0",
"@types/chai": ">=3.4.34 <3.6.0",
"@types/mocha": ">=2.2.33 <2.6.0",
"ajv": "~6.12.3",
"concurrently": "^4.1.0",
"gulp": "~4.0.0",
"sp-rest-proxy": "^2.7.8"
}
}