-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
127 lines (127 loc) · 4.73 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": "lkim-asadiyah",
"version": "1.0.0",
"private": true,
"description": "Project LKIM Asadiyah Web App",
"engines": {
"node": "12"
},
"scripts": {
"build": "npm run clean && tsc && cross-env NODE_ENV=production rollup --config rollup.config.js",
"clean": "rimraf dist out-tsc",
"deploy": "npm run build && NODE_ENV=production firebase deploy",
"firestore:delete": "firebase firestore:delete --recursive --all-collections -y",
"firestore:export": "ts-node-script ./scripts/firestore-init",
"firestore:init": "firebase functions:config:set schedule.enabled=true && firebase deploy --except hosting && ts-node-script ./scripts/firestore-init",
"fix": "concurrently npm:fix:*",
"fix:eslint": "eslint . --ext .ts --ext .js --fix",
"fix:prettier": "prettier . --write",
"fix:stylelint": "stylelint \"src/components/**/*.ts\" \"src/styles/**/*.ts\" --fix",
"install:emulator": "firebase setup:emulators:firestore",
"install:functions": "npm --prefix ./functions ci",
"postinstall": "npm run install:functions && npm run install:emulator",
"serve": "npm run build && firebase serve",
"start": "cross-env NODE_ENV=development npm run watch",
"start:emulators": "firebase emulators:start",
"test": "jest",
"watch": "concurrently --kill-others npm:watch:*",
"watch:es-dev-server": "es-dev-server --open --watch",
"watch:tsc": "tsc --watch"
},
"dependencies": {
"@abraham/remotedata": "^0.8.0",
"@justinribeiro/lite-youtube": "^1.3.1",
"@material/mwc-button": "^0.25.3",
"@material/mwc-fab": "^0.22.1",
"@polymer/app-layout": "^3.1.0",
"@polymer/app-route": "^3.0.2",
"@polymer/decorators": "^3.0.0",
"@polymer/google-map": "github:pranavpandey/google-map#3.0",
"@polymer/iron-ajax": "^3.0.1",
"@polymer/iron-dropdown": "^3.0.1",
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-image": "^3.0.2",
"@polymer/iron-overlay-behavior": "^3.0.3",
"@polymer/iron-pages": "^3.0.1",
"@polymer/marked-element": "^3.0.1",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-dialog-behavior": "^3.0.1",
"@polymer/paper-dropdown-menu": "^3.1.0",
"@polymer/paper-fab": "^3.0.1",
"@polymer/paper-icon-button": "^3.0.2",
"@polymer/paper-input": "^3.2.1",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-listbox": "^3.0.1",
"@polymer/paper-menu-button": "^3.0.1",
"@polymer/paper-progress": "^3.0.1",
"@polymer/paper-tabs": "^3.1.0",
"@polymer/paper-toast": "^3.0.1",
"@polymer/polymer": "^3.4.1",
"@power-elements/lazy-image": "^2.2.0",
"@radi-cho/star-rating": "github:abraham/star-rating#polymer-3",
"@reduxjs/toolkit": "^1.7.1",
"@webcomponents/webcomponentsjs": "^2.6.0",
"clamp-js-main": "github:abraham/clamp-js-main#export",
"lit-element": "^3.1.1",
"lit-html": "^2.0.2",
"plastic-image": "^3.0.2",
"pwa-helpers": "^0.9.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@firebase/testing": "^0.20.11",
"@open-wc/building-rollup": "^2.0.1",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@types/google.analytics": "0.0.42",
"@types/jest": "^26.0.24",
"@types/jest-dev-server": "^5.0.0",
"@types/node": "^17.0.8",
"@types/polymer": "^1.2.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^7.0.0",
"core-js": "^3.20.2",
"cross-env": "^7.0.3",
"deepmerge": "^4.2.2",
"es-dev-server": "^2.1.0",
"eslint": "^7.30.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-polymer": "^0.4.0",
"eslint-plugin-testing-library": "^5.0.3",
"firebase": "^9.6.1",
"firebase-admin": "^9.11.1",
"firebase-tools": "^10.0.1",
"firestore-export-import": "^0.17.0",
"jest": "^27.4.6",
"jest-dev-server": "^4.4.0",
"jest-runner-eslint": "^1.0.0",
"jest-runner-prettier": "^0.3.7",
"jest-runner-stylelint": "^2.3.7",
"jest-runner-tsc": "^1.6.0",
"nunjucks": "^3.2.3",
"prettier": "2.5.1",
"prettier-plugin-package": "1.3.0",
"rendertron-middleware": "^0.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-re": "^1.0.7",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"contributors": [
"Kurniawan, Koord Divisi Media LKIM"
]
}