This repository was archived by the owner on Nov 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"name": "@webacad/angular-tools",
"description": "Tool set for angular applications",
"version": "2.0.2",
"keywords": [
"angular",
"express",
"handlebars",
"hmr",
"postcss",
"sass",
"scss",
"webpack",
"hot-module-replacement"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:Web-ACAD/js-angular-tools.git"
},
"author": {
"name": "David Kudera",
"email": "kudera.d@gmail.com",
"url": "https://www.davidkudera.com"
},
"dependencies": {
"@ngtools/webpack": "^1.10.2",
"assets-webpack-plugin": "^3.5.1",
"body-parser": "^1.18.2",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"nocache": "^2.0.0",
"postcss-loader": "^2.1.3",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^3.11.0 <4.0.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-dev-middleware": ">=2.0.0 <3.0.0",
"webpack-hot-middleware": "^2.21.2"
},
"peerDependencies": {
"@angular/core": "^5.0",
"@angularclass/hmr": "*",
"rxjs": "^5.5.0"
},
"devDependencies": {
"@types/node": "8.0.19",
"npm-install-peers": "^1.2.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "tslint --project tsconfig.json",
"install:peers": "npm-install-peers",
"prepublishOnly": "npm run build"
}
}