-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "angular2-redux-complex-ui",
"version": "1.0.0",
"description": "Example of using Angular2 and Redux together to manage a \"complex\" user interface.",
"main": "index.js",
"scripts": {
"web": "node server",
"lint": "tslint **/*.ts --exclude \"**/*.d.ts\" --exclude \"node_modules/**/*.ts\"",
"build": "npm-run-all lint build:css build:ts test",
"build:css": "node scripts/build-css",
"build:ts": "tsc",
"test": "node scripts/run-tests",
"start": "npm-run-all build web",
"postinstall": "typings install"
},
"keywords": [
"Redux",
"Angular2"
],
"author": "Dave F. Baskin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ng-cookbook/angular2-redux-complex-ui.git"
},
"standard": {
"ignore": [
"src/app/"
]
},
"engines": {
"node": ">=4.0"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"core-js": "^2.4.1",
"express": "^4.13.4",
"font-awesome": "^4.5.0",
"jquery": "^2.2.3",
"lodash": "^4.6.1",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"semantic-ui-css": "^2.1.8",
"systemjs": "0.19.27",
"zone.js": "^0.6.23"
},
"devDependencies": {
"glob": "^7.0.3",
"jasmine": "^2.4.1",
"jasmine-spec-reporter": "^2.4.0",
"node-sass": "^3.4.2",
"npm-run-all": "^3.1.0",
"q": "^1.4.1",
"tslint": "^3.5.0",
"typescript": "^1.8.10",
"typings": "^1.3.2"
}
}