-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.1 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
{
"name": "leeway",
"version": "1.0.0",
"description": "Where work is avoided.",
"private": true,
"type": "module",
"engines": {
"node": "16.x",
"npm": "7.x"
},
"scripts": {
"build": "run-s build:*",
"build:patch": "patch-package",
"build:rollup": "rollup -c",
"postinstall": "patch-package",
"lint": "run-s lint:*",
"lint:client": "eslint client",
"lint:server": "eslint server",
"clean": "rimraf public",
"start": "node ./server/app.js",
"prewatch": "npm run build",
"watch": "run-p watch:*",
"watch:rollup": "rollup -c -w",
"watch:heroku": "nodemon -x 'heroku local' --signal SIGTERM --config server.nodemon.json"
},
"author": "Benny Powers <[email protected]>",
"license": "ISC",
"dependencies": {
"@apollo-elements/components": "^2.0.0-next.11",
"@apollo/client": "^3.4.1",
"@material/mwc-button": "^0.22.1",
"@material/mwc-dialog": "^0.22.1",
"@material/mwc-formfield": "^0.22.1",
"@material/mwc-icon-button": "^0.22.1",
"@material/mwc-snackbar": "^0.22.1",
"@material/mwc-switch": "^0.22.1",
"@power-elements/package-info": "^0.1.1",
"@power-elements/service-worker": "^5.0.0",
"@web/rollup-plugin-html": "^1.9.1",
"apollo-server-express": "^2.25.1",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"connect-redis": "^6.0.0",
"crocks": "^0.12.4",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-sslify": "^1.2.0",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.5",
"hast-util-from-parse5": "^7.1.0",
"hast-util-select": "^5.0.0",
"hast-util-to-html": "^8.0.1",
"hast-util-to-parse5": "^7.0.0",
"hastscript": "^7.0.1",
"hy-drawer": "^1.0.0-uvw.0",
"ioredis": "^4.27.7",
"parse5": "^6.0.1",
"parse5-utils": "^2.0.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-http": "^0.3.0",
"passport-local": "^1.0.0",
"subscriptions-transport-ws": "^0.9.19",
"tiny-relative-date": "^1.3.0",
"uuid": "^8.3.2",
"workbox-build": "^6.1.5",
"zero-md": "^2.2.0"
},
"devDependencies": {
"@apollo-elements/rollup-plugin-graphql": "^1.0.3",
"@pwrs/eslint-config": "^0.0.22",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@types/ioredis": "^4.26.6",
"@types/parse5": "^6.0.1",
"@web/rollup-plugin-copy": "^0.3.0",
"chokidar": "^3.5.2",
"eslint": "^7.31.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"rollup": "^2.55.1",
"rollup-plugin-license": "^2.5.0",
"rollup-plugin-lit-css": "^3.0.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-modulepreload": "^1.2.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-notify": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"rollup-plugin-watch-assets": "^1.0.1",
"rollup-plugin-workbox": "^6.1.4",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.3.5"
}
}