forked from DSpace-Labs/angular2-ui-prototype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.48 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
{
"name": "angular2-dspace-ui-prototype",
"version": "0.0.1",
"description": "Angular Universal extended DSpace UI prototype",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/DSpace-Labs/angular2-ui-prototype.git"
},
"license": "BSD-3-Clause",
"contributors": [
"Tim Donohue <[email protected]>",
"Art Lowel <[email protected]>",
"Andrea Bollini <[email protected]>",
"James Creel <[email protected]>",
"William Welling <[email protected]>",
"Dylan Meeus <[email protected]>"
],
"scripts": {
"global": "npm install --global http-proxy nodemon npm-check-updates rimraf ts-node typedoc typescript typings webpack node-sass",
"preinstall": "npm run global",
"postinstall": "typings install",
"prebuild": "rimraf dist",
"build": "webpack && node-sass resources/styles -o dist/server/static/css --precision 10 --source-comments true",
"clean": "rimraf ./node_modules",
"docs": "typedoc --options typedoc.json ./src",
"watch": "concurrently \"webpack -w\" \"nodemon --debug dist/server/bundle.js\" \"ts-node src/proxy.ts -i true\" \"node-sass -w -r resources/styles -o dist/server/static/css --precision 10 --source-comments true\"",
"test": "concurrently \"nodemon dist/server/bundle.js\" \"ts-node src/proxy.ts -i true\""
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/platform-server": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"angular2-universal": "0.101.9",
"body-parser": "1.15.1",
"bootstrap-sass": "3.3.6",
"compression": "1.6.2",
"multer" : "1.1.0",
"express": "4.13.4",
"ng2-bootstrap": "1.0.17",
"ng2-file-upload": "1.0.3",
"ng2-translate": "2.1.0",
"object-hash": "1.1.2",
"preboot": "2.1.2",
"rxjs": "5.0.0-beta.6"
},
"devDependencies": {
"codelyzer": "0.0.20",
"commander": "2.9.0",
"concurrently": "2.1.0",
"copy-webpack-plugin": "3.0.1",
"http-proxy": "1.13.3",
"nodemon": "1.9.2",
"rimraf": "2.5.2",
"ts-loader": "0.8.2",
"ts-node": "0.7.3",
"tslint": "3.10.2",
"tslint-loader": "2.1.4",
"typedoc": "0.4.1",
"typescript": "1.8.10",
"typings": "1.0.4",
"webpack": "1.13.1",
"webpack-merge": "0.14.0"
}
}