-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
130 lines (130 loc) · 4.89 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
130
{
"name": "hoverboard",
"version": "3.0.0",
"private": true,
"description": "Conference website template",
"engines": {
"node": "16",
"npm": "7"
},
"scripts": {
"build": "npm run clean && NODE_ENV=production rollup --config rollup.config.js",
"clean": "rimraf dist",
"deploy": "npm run build && NODE_ENV=production firebase deploy --project android-makers-2022",
"firestore:copy": "ts-node-script ./scripts/firestore-copy",
"firestore:init": "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:functions": "npm --prefix ./functions ci",
"lint": "concurrently npm:lint:*",
"lint:eslint": "eslint . --ext .ts --ext .js",
"lint:prettier": "prettier --check .",
"lint:stylelint": "stylelint \"src/components/**/*.ts\" \"src/styles/**/*.ts\"",
"postinstall": "npm run install:functions",
"serve": "NODE_ENV=production concurrently --kill-others npm:start:*",
"start": "NODE_ENV=development concurrently --kill-others npm:start:*",
"start:emulators": "firebase emulators:start",
"start:functions": "npm --prefix functions start",
"start:rollup": "rollup --config rollup.config.js --watch",
"test": "jest",
"types": "concurrently npm:types:*",
"types:functions": "npm --prefix ./functions run build",
"types:web": "tsc --noEmit"
},
"dependencies": {
"@abraham/remotedata": "^0.8.0",
"@justinribeiro/lite-youtube": "^1.2.0",
"@material/mwc-button": "^0.25.3",
"@polymer/app-layout": "^3.1.0",
"@polymer/app-route": "^3.0.2",
"@polymer/decorators": "^3.0.0",
"@polymer/google-map": "git+https://[email protected]/abraham/google-map.git#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-fab": "^3.0.1",
"@polymer/paper-icon-button": "^3.0.2",
"@polymer/paper-input": "^3.2.1",
"@polymer/paper-menu-button": "^3.1.0",
"@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": "git+https://[email protected]/abraham/star-rating.git#polymer-3",
"@reduxjs/toolkit": "^1.6.2",
"@webcomponents/webcomponentsjs": "^2.6.0",
"clamp-js-main": "git+https://[email protected]/abraham/clamp-js-main.git#export",
"firebase": "^9.4.1",
"firestore-export-import": "^0.17.0",
"lit": "^2.0.2",
"plastic-image": "^3.0.2",
"pwa-helpers": "^0.9.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"register-service-worker": "^1.7.2"
},
"devDependencies": {
"@firebase/logger": "^0.3.2",
"@firebase/rules-unit-testing": "^2.0.1",
"@firebase/util": "^1.4.2",
"@jest/globals": "^27.3.1",
"@jest/types": "^27.4.2",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@stylelint/postcss-css-in-js": "^0.37.2",
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.15.1",
"@types/google.analytics": "0.0.42",
"@types/jest-dev-server": "^5.0.0",
"@types/node": "^16.11.11",
"@types/polymer": "^1.2.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@web/rollup-plugin-html": "^1.10.1",
"concurrently": "^6.4.0",
"eslint": "^8.3.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-testing-library": "^5.0.1",
"firebase-admin": "^10.0.0",
"firebase-tools": "^9.22.0",
"jest": "^27.4.3",
"jest-dev-server": "^6.0.2",
"nunjucks": "^3.2.3",
"prettier": "2.5.0",
"prettier-plugin-package": "1.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-re": "^1.0.7",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0",
"stylelint": "^14.0.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"testing-library__dom": "^7.29.4-beta.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"contributors": [
"Oleh Zasadnyy, GDG Lviv",
"Sophie Huts, GDG Lviv",
"Abraham Williams, GDG Madison"
]
}