-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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": "event-view",
"version": "0.0.1",
"scripts": {
"postinstall": "npm run typings install",
"tsc": "tsc -p ./src/client",
"tsc:w": "tsc -p ./src/client -w",
"lint": "tslint ./src/client/**/*.ts -t verbose",
"lite": "lite-server",
"start": "npm run tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
"typings": "typings"
},
"dependencies": {
"a2-in-memory-web-api": "~0.1.0",
"angular2": "2.0.0-beta.13",
"systemjs": "0.19.25",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.6.6"
},
"devDependencies": {
"canonical-path": "0.0.2",
"concurrently": "^2.0.0",
"globby": "^4.0.0",
"gulp": "^3.9.0",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.7",
"jasmine-core": "^2.3.4",
"jasmine-spec-reporter": "^2.4.0",
"jsdom": "^7.2.2",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-jasmine": "^0.3.6",
"lite-server": "^2.2.0",
"lodash": "^4.0.0",
"mkdirp": "^0.5.1",
"protractor": "^3.0.0",
"q": "^1.4.1",
"typescript": "^1.8.9",
"typings": "^0.7.9"
}
}