-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (62 loc) · 1.9 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
68
69
70
71
72
{
"name": "ng2-skel",
"version": "0.1.0-dev",
"description": "Angular2 skeleton for Castaway Labs internal use",
"scripts": {
"clean": "rimraf dist/ npm-debug.log*",
"clean.repo": "rimraf dist/ *.log node_modules/",
"lint:js": "eslint --ext=.js ./*.js ./src/**/*.js",
"lint:js.fix": "eslint --ext=.js --fix ./*.js ./src/**/*.js",
"lint:ts": "tslint --type-check ./*.ts ./src/**/*.ts",
"lint": "npm run -s lint:js && npm run -s lint:ts",
"make": "webpack --progress --profile",
"make:prod": "NODE_ENV=production npm run -s make",
"watch": "NODE_ENV=development webpack --watch --progress --profile"
},
"repository": {
"type": "git",
"url": "git@github.com:CastawayLabs/ng2-skel"
},
"authors": [
"Zia Ur Rehman <zia.ur.rehman@catawaylabs.com>"
],
"license": "MIT",
"private": true,
"dependencies": {
"@angular/common": "^2.1.1",
"@angular/compiler": "^2.1.1",
"@angular/core": "^2.1.1",
"@angular/forms": "^2.1.1",
"@angular/http": "^2.1.1",
"@angular/platform-browser": "^2.1.1",
"@angular/platform-browser-dynamic": "^2.1.1",
"@angular/router": "^3.1.1",
"font-awesome": "^4.7.0",
"bootstrap": "^4.0.0-alpha.5",
"ng2-bootstrap": "^1.1.16",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.26"
},
"devDependencies": {
"@types/core-js": "^0.9.34",
"@types/node": "^6.0.46",
"autoprefixer": "^6.5.1",
"eslint": "^3.8.1",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^3.10.1",
"rimraf": "^2.5.4",
"tslint": "^3.15.1",
"typescript": "^2.0.6",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"ng2-component-loader": "^0.1.1",
"postcss-loader": "^1.0.0",
"pug-html-loader": "^1.0.9",
"raw-loader": "^0.5.1",
"sass-loader": "^4.0.2",
"ts-loader": "^0.9.5",
"webpack": "^1.13.3"
}
}