-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
84 lines (84 loc) · 2.64 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
81
82
83
84
{
"name": "angular-custom-tour",
"description": "Easy to customize Angular 2+ tour",
"repository": {
"type": "git",
"url": "https://github.com/miraxes/angular-custom-tour"
},
"version": "0.0.18",
"license": "MIT",
"main": "bundles/angular-custom-tour.umd.min.js",
"module": "index.js",
"typings": "index.d.ts",
"keywords": [
"angular",
"angular2",
"ng2",
"ngx",
"hint",
"step",
"tour"
],
"scripts": {
"tslint": "tslint",
"lint": "npm run tslint \"src/**/*.ts\" && npm run tslint \"server/**/*.ts\"",
"server": "npm run server:dev",
"server:dev": "webpack-dev-server --config config/webpack.dev.js --progress --profile --watch",
"server:dev:hmr": "npm run server:dev -- --inline --hot",
"build": "npm run clean && webpack --config config/webpack.prod.js --progress --profile --bail",
"umd": "rm -rf bundles && webpack --config config/webpack.umd.js --progress --profile --bail",
"clean": "rm -rf docs",
"start": "npm run server:dev:hmr",
"ngc": "ngc",
"ngc-build": "rm -rf lib && rm -rf \"src/node_modules\" && \"node_modules/.bin/ngc\" -p tsconfig-aot.json",
"webpack": "node_modules/.bin/webpack"
},
"dependencies": {
"@angular/animations": "^4.4.7",
"@angular/platform-server": "^5.1.1"
},
"devDependencies": {
"@angular/animations": "4.4.6",
"@angular/common": "4.4.6",
"@angular/compiler": "4.4.6",
"@angular/compiler-cli": "4.4.6",
"@angular/core": "4.4.6",
"@angular/forms": "4.4.6",
"@angular/platform-browser": "4.4.6",
"@angular/platform-browser-dynamic": "4.4.6",
"@angular/router": "4.4.6",
"@types/core-js": "^0.9.41",
"@types/node": "^7.0.50",
"@types/webpack": "^2.2.15",
"angular2-template-loader": "^0.6.2",
"autoprefixer": "^9.6.0",
"codelyzer": "~3.0.0",
"core-js": "^2.4.1",
"css-loader": "^0.28.0",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"rxjs": "^5.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.16.1",
"ts-loader": "^2.3.7",
"tslint": "^5.1.0",
"typescript": "2.3.4 || 2.4.2 || 2.7.2",
"typescript-formatter": "^5.1.3",
"webpack": "~2.4.1",
"webpack-dev-server": "~3.1.11",
"webpack-merge": "^4.1.0",
"zone.js": "^0.8.9"
},
"peerDependencies": {
"@angular/common": ">=4 <7",
"@angular/compiler": ">=4 <7",
"@angular/compiler-cli": ">=4 <7",
"@angular/core": ">=4 <7",
"@angular/forms": ">=4 <7",
"@angular/platform-browser": ">=4 <7",
"@angular/platform-browser-dynamic": ">=4 <7",
"@angular/router": ">=4 <7"
}
}