-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "greeter",
"version": "0.1.0",
"description": "Simple greeter project using Typescript.",
"license": "MIT",
"author": "Nelson Ricardo <[email protected]>",
"main": "index.html",
"keywords": [
"greeter",
"typescript",
"angularjs"
],
"scripts": {
"prebuild": "npm install",
"build": "webpack --display-reasons --display-chunks --progress --profile",
"start": "webpack-dev-server -w --port 9000 --content-base dist/"
},
"dependencies": {
"@angular/common": "^2.4.7",
"@angular/compiler": "^2.4.7",
"@angular/core": "^2.4.6",
"@angular/platform-browser": "^2.4.7",
"@angular/platform-browser-dynamic": "^2.4.7",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.1.0",
"zone.js": "^0.7.6"
},
"devDependencies": {
"@types/core-js": "^0.9.35",
"@types/requirejs": "^2.1.28",
"compression-webpack-plugin": "^0.3.2",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"sass-loader": "^4.1.1",
"ts-loader": "^2.0.0",
"typescript": "^2.1.5",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
}
}