-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
80 lines (80 loc) · 2.44 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
73
74
75
76
77
78
79
80
{
"name": "angular1-scaffold",
"version": "1.0.0",
"description": "Angular 1 scaffold with Typescript and ng-metadata",
"main": "src/main.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ngParty/Angular1-scaffold.git"
},
"scripts": {
"start": "npm run server",
"build": "NODE_ENV=production webpack --config webpack-build.config.js",
"build:dev": "webpack --progress --profile --colors --display-error-details --display-cached",
"test": "karma start",
"test:ci": "karma start --browsers Firefox",
"test:watch": "npm run test -- --auto-watch --no-single-run",
"clean": "rimraf doc/ coverage/ dist/",
"server": "webpack-dev-server --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/"
},
"keywords": [],
"contributors": [
"Martin Hochel <[email protected]>",
"Mario Vejlupek <[email protected]>"
],
"license": "ISC",
"dependencies": {
"@types/angular": "1.5.22",
"@types/core-js": "0.9.35",
"angular": "1.6.1",
"core-js": "2.4.1",
"ng-metadata": "4.0.0",
"reflect-metadata": "0.1.9",
"rxjs": "5.0.2",
"tslib": "1.4.0"
},
"devDependencies": {
"@angular/compiler": "2.4.1",
"@angular/core": "2.4.1",
"@types/angular-mocks": "1.5.8",
"@types/jasmine": "2.5.38",
"@types/lodash": "4.14.37",
"@types/node": "6.0.53",
"angular-mocks": "1.6.1",
"awesome-typescript-loader": "3.0.0-beta.17",
"codelyzer": "2.0.0-beta.4",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.1",
"html-webpack-plugin": "2.24.1",
"istanbul-instrumenter-loader": "1.2.0",
"jasmine-core": "2.5.2",
"json-loader": "0.5.4",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.1",
"karma-phantomjs-launcher": "1.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.1",
"lodash": "4.17.3",
"node-sass": "4.1.1",
"raw-loader": "0.5.1",
"remap-istanbul": "0.8.4",
"rimraf": "2.5.4",
"sass-loader": "4.1.1",
"source-map-loader": "0.1.5",
"style-loader": "0.13.1",
"tslint": "4.2.0",
"tslint-loader": "3.3.0",
"typescript": "2.1.4",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"zone.js": "0.7.4"
},
"engines": {
"node": ">= 6.x",
"npm": ">= 3"
}
}