forked from Skeeterdrums/angular-skeleton-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.3 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.3 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mobile-tech-challenges",
"version": "1.0.1",
"description": "Captech's Mobile tech challenges, angular 4 flavor",
"scripts": {
"start": "webpack-dev-server --inline --progress --port 8091",
"lint": "tslint ./app/**/*.ts -t verbose",
"test": "mocha-webpack",
"test:watch": "mocha-webpack --watch",
"coverage": "nyc --reporter=html mocha-webpack",
"tsc": "tsc --noEmit",
"tsc:w": "tsc -w",
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"
},
"keywords": [],
"author": "Sean Sexton",
"license": "MIT",
"dependencies": {
"@angular/animations": "^4.4.6",
"@angular/common": "^4.4.6",
"@angular/compiler": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/forms": "^4.4.6",
"@angular/http": "^4.4.6",
"@angular/platform-browser": "^4.4.6",
"@angular/platform-browser-dynamic": "^4.4.6",
"@angular/router": "^4.4.6",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"currencyformatter.js": "^1.0.4",
"ng2-toastr": "^4.1.2",
"ng2-webstorage": "^1.8.0",
"rxjs": "^5.4.3",
"systemjs": "^0.19.47",
"zone.js": "^0.8.5"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.41",
"@types/node": "^6.0.46",
"@types/sinon": "^1.16.34",
"@types/webpack": "^2.2.1",
"angular2-template-loader": "^0.6.0",
"awesome-typescript-loader": "^3.0.0-beta.18",
"canonical-path": "0.0.2",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.26.0",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^2.0.0",
"jsdom": "^9.9.1",
"lodash": "^4.16.4",
"mocha": "^3.2.0",
"mocha-loader": "^1.1.0",
"mocha-webpack": "^1.0.1",
"null-loader": "^0.1.1",
"nyc": "^11.0.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^2.4.0",
"webpack-node-externals": "^1.5.4"
},
"repository": {},
"nyc": {
"include": [
"app/**"
]
}
}