-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
{
"name": "angular2-tutorial",
"version": "0.1.0",
"description": "Angular2 tutorial sample application",
"main": "",
"scripts": {
"build": "npm run webpack --colors --display-error-details --display-cached",
"webpack": "webpack",
"clean": "rimraf node_modules tsd_typings",
"clean-install": "npm run clean && npm install",
"clean-start": "npm run clean && npm start",
"prequick-start": "npm install",
"watch": "webpack --watch",
"server": "webpack-dev-server --inline --colors --display-error-details --display-cached --port 3001",
"test": "karma start",
"tsd-update": "tsd reinstall --overwrite",
"docs": "typedoc --options typedoc.json src/**/*.ts",
"postinstall": "npm run tsd-update && tsd install && tsd link",
"start": "npm run server"
},
"repository": {
"type": "git",
"url": "https://github.com/springboot-angular2-tutorial/angular2-app.git"
},
"author": "akirasosa <akirasosa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/springboot-angular2-tutorial/angular2-app/issues"
},
"homepage": "https://github.com/springboot-angular2-tutorial/angular2-app",
"dependencies": {
"@reactivex/rxjs": "5.0.0-alpha.10",
"angular2": "2.0.0-alpha.46",
"bootstrap": "^3.3.6",
"jquery": "^2.1.4",
"jwt-decode": "^1.4.0",
"lodash": "^3.10.1",
"md5-hex": "^1.1.0",
"moment": "^2.10.6",
"ng2-bootstrap": "0.46.0",
"pluralize": "^1.2.1",
"reflect-metadata": "0.1.2",
"time-ago": "^0.1.0",
"toastr": "^2.1.2",
"zone.js": "0.5.8"
},
"devDependencies": {
"bootstrap-webpack": "0.0.5",
"css-loader": "^0.23.0",
"exports-loader": "^0.6.2",
"expose-loader": "^0.7.0",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.4",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^0.13.11",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.6",
"karma-mocha-reporter": "^1.1.3",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs2-launcher": "0.3.2",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"node-sass": "^3.4.2",
"raw-loader": "^0.5.1",
"rimraf": "2.4.4",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"ts-loader": "0.7.2",
"tsd": "^0.6.5",
"typescript": "^1.7.3",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}