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
/
Copy pathpackage.json
107 lines (107 loc) · 3.79 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
106
107
{
"name": "sp-angular-webpack-starter",
"version": "1.0.0",
"description": "A starter for SharePoint and Angular made with Webpack",
"scripts": {
"build": "rimraf dist && webpack -p --bail --progress --colors --profile --config webpack-app-prod.config.js",
"build-proxy": "rimraf dist && webpack -p --bail --progress --profile --config webpack-hostwebproxy.config.js && rimraf dist/HostWebProxy.js",
"configure": "node ./bin/configure.js",
"dashboard": "webpack-dashboard -- webpack-dev-server --progress --open",
"deploy-api": "node ./bin/deploy-api.js",
"deploy-proxy-sp": "npm run build-proxy && node ./bin/deploy-proxy-sp.js",
"deploy-proxy-spo": "npm run build-proxy && node ./bin/deploy-proxy-spo.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"server": "webpack-dev-server --progress --open",
"test": "karma start",
"test-watch": "karma start --auto-watch --no-single-run",
"start": "npm run dashboard",
"postinstall": "node node_modules/phantomjs-prebuilt/install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/beyond-sharepoint/sp-angular-webpack-starter.git"
},
"author": "Sean McLellan",
"license": "MIT",
"bugs": {
"url": "https://github.com/beyond-sharepoint/sp-angular-webpack/issues"
},
"homepage": "https://github.com/beyond-sharepoint/sp-angular-webpack",
"engines": {
"node": ">6"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.6",
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-loading-bar": "^0.9.0",
"angular-resizable": "^1.2.0",
"angular-sanitize": "^1.6.6",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-grid": "^4.0.6",
"angular-vs-repeat": "^1.1.7",
"bluebird": "^3.5.0",
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"msgraph-sdk-javascript": "^0.3.1",
"ng-file-upload": "^12.2.13",
"ng-photoswipe": "^0.2.0",
"ngclipboard": "^1.1.1",
"office-ui-fabric-core": "^7.2.0",
"promise-polyfill": "^6.0.2",
"urijs": "^1.18.12",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@beyond-sharepoint/ntlm-remote-auth": "^0.1.14",
"@beyond-sharepoint/spo-remote-auth": "^0.1.8",
"angular-mocks": "^1.6.6",
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-bluebird": "^1.1.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-promise-to-bluebird": "^1.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chalk": "^2.1.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"flow-bin": "^0.54.1",
"gauge": "^2.7.4",
"hanson": "^1.2.0",
"hson-loader": "^2.0.0",
"html-webpack-inline-source-plugin": "0.0.9",
"html-webpack-plugin": "^2.30.1",
"inquirer": "^3.2.3",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.4",
"ng-cache-loader": "0.0.25",
"node-libs-browser": "^2.0.0",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.15",
"postcss-loader": "^2.0.6",
"raw-loader": "^0.5.1",
"request-progress": "^3.0.0",
"rimraf": "^2.6.2",
"style-loader": "^0.18.2",
"ui-select": "^0.19.8",
"url-loader": "^0.5.9",
"webpack": "^3.5",
"webpack-dashboard": "^1.0.0-5",
"webpack-dev-server": "^2.7.1"
}
}