-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
77 lines (77 loc) · 2.4 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
{
"name": "festify-client",
"version": "0.1.0",
"description": "Festify Client App",
"main": "src/index.ts",
"repository": "https://github.com/Festify/app.git",
"author": "Festify Dev Team <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@festify/redux-little-router": "^15.1.2",
"@polymer/app-layout": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1",
"@polymer/iron-pages": "^3.0.1",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-checkbox": "^3.0.1",
"@polymer/paper-dialog": "^3.0.1",
"@polymer/paper-fab": "^3.0.1",
"@polymer/paper-icon-button": "^3.0.1",
"@polymer/paper-input": "^3.0.1",
"@polymer/paper-slider": "^3.0.1",
"@polymer/paper-spinner": "^3.0.1",
"@polymer/paper-toast": "^3.0.1",
"@polymer/polymer": "^3.0.1",
"@webcomponents/webcomponentsjs": "^2.0.0",
"dom-flip": "^0.4.0",
"firebase": "^5.0.2",
"fit-html": "^0.7.0",
"idb": "^2.1.1",
"ken-burns-carousel": "^0.2.1",
"lit-html": "^0.14.0",
"lodash-es": "^4.17.4",
"promise-debounce": "^1.0.1",
"raven-js": "^3.24.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-saga": "^0.16.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@mraerino/rollup-plugin-minifyliterals": "^1.2.0",
"@types/lodash-es": "^4.17.0",
"@types/spotify-web-playback-sdk": "^0.1.1",
"bundlesize": "^0.17.0",
"connect-history-api-fallback": "^1.5.0",
"firebase-bolt": "^0.8.2",
"rollup": "^0.66.6",
"rollup-plugin-babel-minify": "^6.0.0",
"rollup-plugin-browsersync": "^0.2.6",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.18.1",
"rollup-plugin-visualizer": "^0.9.0",
"spotify-web-api-js": "^1.1.0",
"tslint": "^5.8.0",
"typescript": "^3.1.3",
"typescript-lit-html-plugin": "^0.9.0"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"check-size": "bundlesize",
"fix": "tslint -p tsconfig.json --fix",
"lint": "tslint -p tsconfig.json",
"prepare-env": "node prepare-env.js",
"serve": "rollup -c --watch"
},
"bundlesize": [
{
"path": "build/index.js",
"maxSize": "250 kb"
}
]
}