-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "angular2-notes",
"version": "1.0.0",
"description": "a remake of Google Keep using Angular 2",
"main": "server.js",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"lite-test": "concurrent \"npm run tsc:w\" \"npm run lite\" ",
"test": "concurrent \"npm run tsc:w\" \"nodemon server.js\" ",
"typings": "typings",
"postinstall": "typings install",
"start": "node"
},
"repository": {
"type": "git",
"url": "https://github.com/m272cels/ng2-notes"
},
"keywords": [
"angular"
],
"author": "Kelvin Lu",
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.7",
"body-parser": "^1.15.0",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"express": "^4.13.4",
"mongoose": "^4.4.4",
"reflect-metadata": "0.1.2",
"rxjs": "^5.0.0-beta.2",
"systemjs": "0.19.22",
"zone.js": "0.5.15"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.1.0",
"typescript": "^1.7.5",
"typings": "^0.6.8"
}
}