-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
72 lines (72 loc) · 2.45 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": "@protacon/ng-virtual-keyboard",
"version": "0.12.0",
"description": "Virtual Keyboard for Angular applications",
"main": "dist/ng-virtual-keyboard.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "cross-env NODE_ENV=dev webpack serve --progress --mode production --port 4200 --host 0.0.0.0 --content-base app --config app/webpack.config --open",
"lint": "eslint 'src/**/*.ts' 'app/**/*.ts'",
"clean": "rimraf dist",
"build": "npm-run-all --serial clean build:ngc build:umd build:app build:gh-pages",
"build:ngc": "ngc -p tsconfig.ngc.json",
"build:umd": "cross-env NODE_ENV=prod webpack --progress --mode production",
"build:app": "cross-env NODE_ENV=prod webpack --progress --mode production --config app/webpack.config",
"build:gh-pages": "cp app/index.html docs && cp app/favicon.png docs && cp -r app/build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/protacon/ng-virtual-keyboard.git"
},
"keywords": [
"Angular"
],
"author": "Protacon",
"license": "MIT",
"bugs": {
"url": "https://github.com/protacon/ng-virtual-keyboard/issues"
},
"homepage": "https://github.com/protacon/ng-virtual-keyboard#readme",
"prefer-stable": true,
"dependencies": {
"@angular/animations": "^8.2.0",
"@angular/cdk": "^8.2.0",
"@angular/flex-layout": "^8.0.0-beta.27",
"@angular/material": "^8.2.0",
"hammerjs": "^2.0.0"
},
"devDependencies": {
"@angular/common": "^8.2.0",
"@angular/compiler": "^8.2.0",
"@angular/compiler-cli": "^8.2.0",
"@angular/core": "^8.2.0",
"@angular/forms": "^8.2.0",
"@angular/platform-browser": "^8.2.0",
"@angular/platform-browser-dynamic": "^8.2.0",
"@angular/router": "^8.2.0",
"@types/node": "^7.10.7",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"angular2-template-loader": "^0.6.2",
"core-js": "^2.6.9",
"cross-env": "^5.2.1",
"css-loader": "^1.0.0",
"eslint": "^7.32.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^1.0.0",
"rimraf": "^2.7.1",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.5.3",
"sass-loader": "^6.0.3",
"strip-loader": "^0.1.2",
"style-loader": "^0.16.1",
"ts-loader": "^4.4.2",
"typescript": "~3.4.0",
"webpack": "^4.0.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.1",
"zone.js": "^0.9.1"
}
}