-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
127 lines (127 loc) · 4.66 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "nean-stack-starter",
"version": "0.0.1357",
"description": "A sample Angular, Node.js and Neo4j demo app",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CharlBest/nean-stack-starter"
},
"keywords": [
"angular",
"node",
"neo4j"
],
"scripts": {
"start": "concurrently -k -n \"SERVICE,WEB,BUILD,API\" -c \"yellow,red,blue,green\" \"npm run start:services\" \"npm run start:client\" \"npm run start:serverwatch\" \"npm run start:server\"",
"start:services": "docker-compose --file ./services/docker-compose.yml --env-file=./services/.env up",
"start:client": "ng serve --open",
"start:serverwatch": "webpack --mode=development --watch --watch-aggregate-timeout 2000",
"start:server": "webpack --mode=development && wait-on tcp:5672 tcp:7687 && pm2 start services/ecosystem.config.js --no-daemon",
"start:stripe-webhook-listener": "docker run --network=\"host\" --rm -it stripe/stripe-cli listen --forward-to localhost:3000/api/v1/payments/stripeWebook --skip-verify --api-key sk_test_uoAC6oPh6pxIyGuo8WHxhNpp",
"build": "ng build --configuration=production && webpack --mode=production && npm run minify-index-html",
"buildv2": "bash build.sh",
"buildv3": "tsc",
"temp": "ng serve --open",
"ts-watch": "tsc-watch --onSuccess \"npm run start:server\"",
"test": "ts-node --project=src/client/tsconfig.spec.json node_modules/jasmine/bin/jasmine --config=src/client/test/jasmine.json",
"lint": "tslint -c tslint.json -p tsconfig.json",
"generate-vapid-keys": "web-push generate-vapid-keys --json",
"minify-index-html": "html-minifier dist/client/index.html --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --use-short-doctype --minify-css true --minify-js true -o dist/client/index.html"
},
"husky": {
"hooks": {
"pre-commit": "npm version patch --no-git-tag-version && git add package.json package-lock.json"
}
},
"dependencies": {
"@angular/animations": "^10.0.3",
"@angular/cdk": "^10.0.1",
"@angular/common": "^10.0.3",
"@angular/compiler": "^10.0.3",
"@angular/core": "^10.0.3",
"@angular/forms": "^10.0.3",
"@angular/material": "^10.0.1",
"@angular/platform-browser": "^10.0.3",
"@angular/platform-browser-dynamic": "^10.0.3",
"@angular/pwa": "^0.1000.2",
"@angular/router": "^10.0.3",
"@angular/service-worker": "^10.0.3",
"@github/webauthn-json": "0.4.2",
"@stripe/stripe-js": "^1.8.0",
"amqplib": "^0.5.6",
"bcryptjs": "^2.4.3",
"browser-image-compression": "^1.0.12",
"compression": "^1.7.4",
"countly-sdk-web": "^20.4.0",
"cron": "^1.8.2",
"emoji-assets": "^6.0.0",
"emoji-toolkit": "^5.5.1",
"express": "^4.17.1",
"firebase": "^7.16.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"marked": "^1.1.1",
"material-design-icons": "^3.0.1",
"neo4j-driver": "^4.1.0",
"nodemailer": "^6.4.10",
"otplib": "^12.0.1",
"qrcode": "^1.4.4",
"quill": "^1.3.7",
"rxjs": "^6.6.0",
"sanitize-html": "^1.27.0",
"schema-dts": "^0.6.0",
"simple-peer": "^9.7.2",
"stripe": "^8.70.0",
"tslib": "^2.0.0",
"uuid": "^8.2.0",
"web-push": "^3.4.4",
"web-vitals": "^0.2.3",
"winston": "^3.3.3",
"ws": "^7.3.1",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1000.2",
"@angular/cli": "^10.0.2",
"@angular/compiler-cli": "^10.0.3",
"@angular/language-service": "^10.0.3",
"@types/amqplib": "^0.5.13",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.7",
"@types/helmet": "^0.0.47",
"@types/jasmine": "^3.5.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/marked": "1.1.0",
"@types/node": "^14.0.23",
"@types/nodemailer": "^6.4.0",
"@types/puppeteer": "^3.0.1",
"@types/qrcode": "^1.3.4",
"@types/quill": "^2.0.3",
"@types/sanitize-html": "^1.23.3",
"@types/simple-peer": "^9.6.0",
"@types/stripe": "^7.13.24",
"@types/uuid": "^8.0.0",
"@types/web-push": "^3.3.0",
"@types/webpack": "^4.41.21",
"@types/winston": "^2.4.4",
"@types/ws": "^7.2.6",
"codelyzer": "^6.0.0",
"concurrently": "^5.2.0",
"html-loader": "^1.1.0",
"html-minifier": "^4.0.0",
"husky": "^4.2.5",
"jasmine": "^3.5.0",
"pm2": "^4.4.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "~6.1.2",
"tslint-sonarts": "^1.9.0",
"typescript": "~3.9.6",
"wait-on": "^5.1.0",
"webpack-cli": "^3.3.12"
}
}