forked from miraxes/angular-custom-tour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
{
"name": "@weseek/angular-custom-tour",
"description": "Easy to customize Angular 2+ tour",
"repository": {
"type": "git",
"url": "https://github.com/miraxes/angular-custom-tour"
},
"version": "1.8.2",
"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/platform-server": "^8.2.4"
},
"devDependencies": {
"@angular/animations": "^8.2.4",
"@angular/common": "^8.2.4",
"@angular/compiler": "^8.2.4",
"@angular/compiler-cli": "^8.2.4",
"@angular/core": "^8.2.4",
"@angular/forms": "^8.2.4",
"@angular/platform-browser": "^8.2.4",
"@angular/platform-browser-dynamic": "^8.2.4",
"@angular/router": "^8.2.4",
"@types/core-js": "^0.9.41",
"@types/node": "^7.0.50",
"@types/webpack": "^2.2.15",
"angular2-template-loader": "^0.6.2",
"codelyzer": "~3.0.0",
"core-js": "^2.4.1",
"css-loader": "^0.28.0",
"html-webpack-plugin": "^2.28.0",
"raw-loader": "^0.5.1",
"rxjs": "^6.3.2",
"style-loader": "^0.16.1",
"ts-loader": "^2.3.7 || 4.3.0",
"tslint": "~5.9.1",
"typescript": "~3.5.3",
"typescript-formatter": "^5.1.3",
"webpack": "~2.4.1",
"webpack-dev-server": "~2.4.4",
"webpack-merge": "^4.1.0",
"zone.js": "^0.8.9"
},
"peerDependencies": {
"@angular/common": ">=4 <9",
"@angular/compiler": ">=4 <9",
"@angular/compiler-cli": ">=4 <9",
"@angular/core": ">=4 <9",
"@angular/forms": ">=4 <9",
"@angular/platform-browser": ">=4 <9",
"@angular/platform-browser-dynamic": ">=4 <9",
"@angular/router": ">=4 <9"
}
}