-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 974 Bytes
/
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
{
"name": "node-angular2-mongo",
"version": "1.0.0",
"description": "Single App with angularjs2",
"main": "server.js",
"scripts": {
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" \"nodemon server.js\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"postinstall": "typings install"
},
"keywords": [
"node",
"angular2",
"mongo"
],
"author": "Mattia",
"license": "ISC",
"dependencies": {
"angular2": "^2.0.0-beta.12",
"body-parser": "^1.15.0",
"bootstrap": "^3.3.6",
"es6-shim": "^0.35.0",
"express": "^4.13.4",
"method-override": "^2.3.5",
"mongoose": "^4.4.9",
"morgan": "^1.7.0",
"reflect-metadata": "^0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "^0.19.24",
"zone.js": "^0.6.6"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.1.0",
"typescript": "^1.8.9",
"typings": "^0.7.9"
}
}