-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.63 KB
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
{
"name": "angular2-todo-es6",
"version": "1.0.0",
"description": "A Todo-List app built with angular2 using ES6",
"main": "index.js",
"author": "Nishant Desai",
"license": "ISC",
"scripts": {
"build": "webpack --watch",
"server": "node server/app",
"debug": "node-debug server/app"
},
"dependencies": {
"@angular/common": "2.0.1",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"@angular/upgrade": "2.0.0",
"angular2-in-memory-web-api": "0.0.20",
"body-parser": "1.13.2",
"bootstrap": "3.3.6",
"cookie-parser": "1.3.5",
"core-js": "2.4.1",
"debug": "2.2.0",
"ejs": "2.3.3",
"express": "4.13.1",
"morgan": "1.6.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.12",
"serve-favicon": "2.3.0",
"zone.js": "0.6.23"
},
"devDependencies": {
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-preset-angular2": "0.0.2",
"babel-preset-es2015": "6.16.0",
"babel-preset-latest": "6.16.0",
"babel-register": "6.16.3",
"babel-runtime": "6.11.6",
"concurrently": "2.0.0",
"css-loader": "0.25.0",
"extract-text-webpack-plugin": "1.0.1",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-nodemon": "2.2.1",
"lite-server": "2.2.0",
"source-map-loader": "0.1.5",
"style-loader": "0.13.1",
"vinyl-source-stream": "1.1.0",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.1",
"webpack-stream": "3.2.0"
}
}