-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "angular2-todo",
"version": "1.0.0",
"description": "A Simple Todo App Written in Angular2 and TypeScript",
"main": "index.js",
"scripts": {
"test": "karma start",
"build": "npm run build:dev",
"build:dev": "webpack --progress --colors",
"build:prod": "webpack --config webpack.prod.config.js --progress --colors",
"server:dev": "webpack-dev-server --hot --progress --colors --content-base src/",
"server:prod": "http-server dist/ --cors",
"start": "npm run server:dev"
},
"repository": {
"type": "git",
"url": "https://github.com/gdangelo/angular2-todo.git"
},
"keywords": [
"Angular2",
"TypeScript",
"ES6",
"ES2015",
"JS",
"Todo"
],
"author": "Grégory D'Angelo",
"license": "ISC",
"bugs": {
"url": "https://github.com/gdangelo/angular2-todo/issues"
},
"homepage": "https://github.com/gdangelo/angular2-todo",
"dependencies": {
"angular2": "^2.0.0-beta.7",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.13",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.5.15"
},
"devDependencies": {
"copy-webpack-plugin": "^1.1.1",
"html-webpack-plugin": "^2.9.0",
"http-server": "^0.8.5",
"jasmine-core": "^2.4.1",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.4",
"raw-loader": "^0.5.1",
"ts-loader": "^0.8.1",
"typescript": "^1.7.5",
"typings": "^0.6.8",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}