-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 3.39 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
85
86
87
88
89
90
{
"name": "ngxf",
"version": "9.0.3",
"scripts": {
"ng": "ng",
"tsc": "tsc",
"start": "ng serve",
"build": "ng build",
"build:all": "ng build platform --prod && ng build socketio --prod && ng build connect --prod",
"build:demo:publish": "ng build ngxf --prod --base-href=platform && git add dist && git commit -m 'Update gh-pages' && git subtree push --prefix dist/ngxf origin gh-pages",
"test": "npx jest -c jest.json",
"test:all": "npm run test",
"lint": "ng lint",
"lint:all": "ng lint platform && ng lint socketio && ng lint connect",
"e2e": "ng e2e",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"build:prerun": "cd ./schematics && npm install && cd ../schematics",
"build:dev-schematics": "npm run build:prerun && tsc -p ./schematics/tsconfig.json",
"build:dev-schematics-files": "cp ./schematics/src/* ./dist/dev-schematics",
"build:dev-schematics:watch": "npm run build:dev-schematics -- --watch",
"build:dev-schematics-files:watch": "npm run build:dev-schematics-files && nodemon -e json,ts,html,css --watch ./schematics/src --exec 'npm run build:dev-schematics-files'",
"run:dev-schematics": "npx ng g ./dist/dev-schematics/collection.json:examples --force",
"run:dev-schematics:watch": "concurrently 'npm:build:dev-schematics:watch' 'npm:build:dev-schematics-files:watch' 'npm:run:dev-schematics'",
"regain": "discovery",
"regain-build": "discovery-build",
"regain-deploy": "npm run regain-build && gh-pages -d build/default"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.0.2",
"@angular/cdk": "~8.2.1",
"@angular/common": "~9.0.2",
"@angular/compiler": "~9.0.2",
"@angular/core": "~9.0.2",
"@angular/forms": "~9.0.2",
"@angular/material": "~8.2.1",
"@angular/platform-browser": "~9.0.2",
"@angular/platform-browser-dynamic": "~9.0.2",
"@angular/pwa": "^0.8.4",
"@angular/router": "~9.0.2",
"@angular/service-worker": "~9.0.2",
"core-js": "^2.5.4",
"hammerjs": "^2.0.8",
"rxjs": "~6.5.4",
"schematics": "file:schematics",
"socket.io-client": "^2.1.1",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.3",
"@angular-devkit/build-ng-packagr": "~0.900.3",
"@angular/cli": "~9.0.3",
"@angular/compiler-cli": "~9.0.2",
"@angular/language-service": "~9.0.2",
"@netbasal/spectator": "2.1.1",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@types/socket.io-client": "^1.4.32",
"codelyzer": "^5.0.0",
"concurrently": "^4.1.0",
"cz-customizable": "^5.2.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^23.6.0",
"jest-preset-angular": "^6.0.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^9.0.1",
"nodemon": "^1.18.9",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tsickle": "0.38.0",
"tslib": "^1.11.0",
"tslint": "~5.11.0",
"typescript": "~3.7.5",
"@discoveryjs/discovery": "^1.0.0-beta.12",
"gh-pages": "^2.0.1",
"@babel/parser": "^7.3.1",
"async-directory-tree": "^2.3.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}