-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "notetaker",
"version": "1.0.0",
"description": "A simple todo app implemented with angular2 and express",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "SET API_ENDPOINT=http://localhost:4500/api && webpack-dev-server --inline --progress --port 8080",
"build": "rimraf dist && webpack --config conf/webpack.prod.js --progress --profile",
"lite": "lite-server",
"postinstall": "typings install",
"heroku-postbuild": "webpack --config conf/webpack.prod.js --progress --profile",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmarkovic/NoteTaker.git"
},
"author": "Theo Markovic",
"license": "ISC",
"bugs": {
"url": "https://github.com/tmarkovic/NoteTaker/issues"
},
"homepage": "https://github.com/tmarkovic/NoteTaker#readme",
"dependencies": {
"@angular/common": "~2.3.0",
"@angular/compiler": "~2.3.0",
"@angular/core": "~2.3.0",
"@angular/forms": "~2.3.0",
"@angular/http": "~2.3.0",
"@angular/platform-browser": "~2.3.0",
"@angular/platform-browser-dynamic": "~2.3.0",
"@angular/router": "~3.3.0",
"@angular/upgrade": "~2.0.2",
"angular-in-memory-web-api": "~0.1.5",
"body-parser": "^1.5.1",
"bootstrap": "^3.3.7",
"bulma": "^0.2.1",
"core-js": "^2.4.1",
"cors": "2.8.1",
"express": "^4.7.0",
"font-awesome": "^4.6.3",
"jwt-simple": "^0.2.0",
"morgan": "^1.2.2",
"reflect-metadata": "^0.1.8",
"rx": "^4.1.0",
"rxjs": "5.0.0-rc.4",
"systemjs": "0.19.39",
"typings": "^1.4.0",
"uuid": "^1.4.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"angular2-template-loader": "^0.4.0",
"awesome-typescript-loader": "3.0.0-beta.9",
"codelyzer": "2.0.0-beta.3",
"concurrently": "^3.0.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.15.0",
"jasmine-core": "^2.4.1",
"karma": "1.3.0",
"karma-cli": "1.0.1",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lite-server": "^2.2.2",
"null-loader": "^0.1.1",
"phantomjs": "2.1.7",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"tslint": "4.0.2",
"tslint-loader": "^3.3.0",
"typescript": "2.1.4",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.2",
"webpack-hud": "0.0.10",
"webpack-merge": "^0.14.0"
}
}