forked from Plum-Crazy/angular-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.21 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
{
"name": "angular-seed",
"version": "1.1.0",
"description": "Angular Seed",
"license": "GPL-3.0",
"repository": {
"type": "GIT",
"url": "https://github.com/Plum-Crazy/angular-seed"
},
"scripts": {
"start": "webpack-dev-server --inline --config config/webpack.dev.js --progress --port 3000",
"test": "karma start config/karma.conf.js",
"lint": "tslint -c config/tslint.json \"src/app/**/*.ts\"",
"pretest": "npm run lint",
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"
},
"dependencies": {
"@angular/common": "^4.0.2",
"@angular/compiler": "^4.0.2",
"@angular/core": "^4.0.2",
"@angular/forms": "^4.0.2",
"@angular/http": "^4.0.2",
"@angular/platform-browser": "^4.0.2",
"@angular/platform-browser-dynamic": "^4.0.2",
"@angular/router": "^4.0.2",
"core-js": "^2.4.1",
"rxjs": "^5.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@types/jasmine": "^2.5.38",
"@types/node": "^6.0.46",
"angular2-template-loader": "^0.4.0",
"codelyzer": "~2.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.26.0",
"jasmine-core": "^2.4.1",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"node-sass": "^3.10.0",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.7",
"pug": "^2.0.0-beta12",
"pug-html-loader": "^1.1.4",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.8",
"rimraf": "^2.5.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ts-loader": "~2.0.3",
"tslint": "~4.5.0",
"typescript": "~2.2.0",
"webpack": "~2.2.0",
"webpack-dev-server": "~2.2.0",
"webpack-merge": "~2.4.0"
}
}