This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.77 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
{
"name": "sp-lookout",
"version": "0.1.0",
"private": true,
"homepage": "https://beyond-sharepoint.github.io/sp-lookout/",
"dependencies": {
"@microsoft/microsoft-graph-client": "^1.0.0",
"@microsoft/sp-client-base": "^1.0.0",
"@microsoft/sp-core-library": "^1.1.0",
"@types/async": "^2.0.40",
"@types/bluebird": "^3.5.8",
"@types/core-js": "^0.9.42",
"@types/jest": "^20.0.5",
"@types/jszip": "^0.0.33",
"@types/later": "^1.2.3",
"@types/lodash": "^4.14.71",
"@types/mousetrap": "^1.5.34",
"@types/node": "^8.0.19",
"@types/react": "^16.0.0",
"@types/react-dom": "^15.5.1",
"@types/react-grid-layout": "^0.14.3",
"@types/react-router": "^4.0.14",
"@types/requirejs": "^2.1.30",
"@types/urijs": "^1.15.34",
"babel-standalone": "^6.25.0",
"chart.js": "^2.6.0",
"cron-parser": "^2.4.1",
"crypto-js": "^3.1.9-1",
"file-saver": "^1.3.3",
"font-awesome": "^4.7.0",
"jest": "^20.0.4",
"later": "RickCarlino/later",
"localforage": "^1.5.0",
"lodash": "^4.17.4",
"mobx": "^3.2.2",
"mobx-react": "^4.2.2",
"moment": "^2.18.1",
"monaco-editor": "^0.9.0",
"mousetrap": "^1.6.1",
"node-sass-chokidar": "^0.0.3",
"office-ui-fabric-react": "^4.30.1",
"react": "^15.6.1",
"react-chartjs-2": "^2.5.5",
"react-dnd": "^2.4.0",
"react-dnd-html5-backend": "^2.4.1",
"react-dom": "^15.6.1",
"react-grid-layout": "^0.14.7",
"react-html-parser": "^1.0.3",
"react-inspector": "^2.1.3",
"react-mfb": "^0.6.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"requirejs": "^2.3.4",
"rrule": "^2.2.0",
"sp-pnp-js": "^2.0.7",
"typescript": "^2.4.2",
"urijs": "^1.18.10",
"whatwg-fetch": "^2.0.3",
"xlsx": "^0.11.0"
},
"devDependencies": {
"cpr": "^2.2.0",
"gh-pages": "^1.0.0",
"npm-run-all": "^4.0.2",
"react-scripts-ts": "beyond-sharepoint/react-scripts-ts",
"rimraf": "^2.6.1",
"source-map-support": "0.4.3"
},
"scripts": {
"postinstall": "cd packages/hostwebproxy && npm install && cd ../.. && cpr node_modules/monaco-editor/min/vs public/vs -o",
"build-proxy": "cd packages/hostwebproxy && npm run build && cd ../..",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start": "rimraf build && npm-run-all -p watch-css start-js",
"start-js": "react-scripts-ts start",
"build": "npm run build-proxy && npm run build-css && react-scripts-ts build",
"deploy": "gh-pages -d build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
}
}