-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
129 lines (129 loc) · 4.17 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
128
129
{
"name": "can-work",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "node --max_old_space_size=10240 ./node_modules/@angular/cli/bin/ng serve --disable-host-check",
"start-no-max-mem": "ng serve --disable-host-check",
"build:staging": "ng build --configuration production --configuration=staging",
"build:prod": "ng build --configuration production --configuration=prod",
"build:debug": "ng build",
"test": "ng test",
"test:firestore": "jest",
"test:firestore:watch": "firebase serve --only firestore & sleep 3s && jest --watch",
"lint": "ng lint",
"e2e": "ng e2e",
"deploy:functions": "firebase deploy --only functions",
"deploy:rules": "firebase deploy --only firestore:rules",
"deploy:indexes": "firebase deploy --only firestore:indexes",
"dev:functions": "nodemon --watch functions/src/ --exec 'cd functions/src && tsc && cd ../../ && firebase serve --only functions --debug' -e ts",
"format": "prettier --write 'src/**/*' 'tests/**/*' 'functions/src/**/*'",
"pretty-quick": "pretty-quick"
},
"private": true,
"dependencies": {
"@angular/animations": "16.2.12",
"@angular/common": "16.2.12",
"@angular/core": "16.2.12",
"@angular/fire": "7.6.1",
"@angular/forms": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"@binance-chain/javascript-sdk": "^2.16.0",
"@kolkov/angular-editor": "^3.0.0-beta.0",
"@popperjs/core": "2.6.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@walletconnect/ethereum-provider": "^2.8.0",
"@walletconnect/modal": "^2.4.5",
"algoliasearch": "4.17.0",
"angular-star-rating": "5.1.0",
"angular2-qrcode": "^2.0.1",
"animate.css": "^3.6.1",
"assert": "^2.0.0",
"base64-js": "^1.3.1",
"core-js": "^2.4.1",
"crypto-browserify": "^3.12.0",
"css-star-rating": "^1.3.1",
"dropzone": "^5.9.3",
"ethers": "5.3.1",
"firebase-admin": "8.10.0",
"firebaseui": "6.1.0",
"firebaseui-angular": "6.1.4",
"hashbow": "^1.1.1",
"https-browserify": "^1.0.0",
"jwt-decode": "^2.2.0",
"marked": "9.0.0",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"ngx-clipboard": "^16.0.0",
"ngx-dropzone-wrapper": "16.0.0",
"ngx-img-fallback": "2.0.0",
"ngx-markdown": "16.0.0",
"ngx-modalview": "16.0.1",
"ngx-pagination": "6.0.3",
"ngx-pipes": "3.2.2",
"ngx-slider-v2": "16.0.2",
"ngx-spinner": "^16.0.2",
"ngx-toastr": "14.3.0",
"observable-input": "^2.0.1",
"os-browserify": "^0.3.0",
"primeng": "16.9.1",
"quill": "^2.0.2",
"ramda": "^0.26.1",
"random-js": "^2.1.0",
"randomcolor": "^0.5.3",
"rxjs": "^6.3.3",
"rxjs-compat": "6.3.3",
"slugify": "^1.3.4",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tailwindcss": "^3.3.6",
"util": "^0.12.5",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.10",
"@angular/cli": "16.2.10",
"@angular/compiler": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "16.2.12",
"@firebase/rules-unit-testing": "^2.0.7",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.11.1",
"@types/ramda": "types/npm-ramda#dist",
"codelyzer": "^6.0.0",
"husky": "^8.0.3",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^29.7.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"nodemon": "^1.18.3",
"postcss": "^8.4.32",
"prettier": "^2.8.5",
"pretty-quick": "^3.1.3",
"protractor": "~7.0.0",
"ts-jest": "29.1.1",
"ts-node": "10.7.0",
"tslint": "~6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "4.9.3"
},
"resolutions": {
"**/event-stream": "^4.0.1",
"webpack": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged"
}
}
}