-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "TestCaseApp",
"description": "App used for retrieving test cases",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/rizzaccio87/TestCaseApp"
},
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"app": "node server",
"start": "concurrently \"npm run tsc:w\" \"npm run app\" ",
"postinstall": "typings install"
},
"dependencies": {
"@angular/common": "2.1.1",
"@angular/compiler": "2.1.1",
"@angular/core": "2.1.1",
"@angular/forms": "2.1.1",
"@angular/http": "2.1.1",
"@angular/platform-browser": "2.1.1",
"@angular/platform-browser-dynamic": "2.1.1",
"@angular/router": "3.1.1",
"body-parser": "1.15.2",
"compression": "1.6.0",
"core-js": "2.4.1",
"d3": "^4.4.4",
"ejs": "2.5.2",
"express": "4.14.0",
"express-session": "1.14.1",
"material-design-lite": "^1.3.0",
"method-override": "2.3.6",
"mongoose": "4.7.5",
"morgan": "1.7.0",
"passport": "^0.3.2",
"primeng": "^1.1.3",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.39",
"zone.js": "0.6.26"
},
"devDependencies": {
"concurrently": "3.1.0",
"traceur": "0.0.111",
"typescript": "2.0.3",
"typings": "1.4.0"
}
}