stacker.news/package.json

83 lines
2.1 KiB
JSON
Raw Normal View History

2021-03-22 20:36:10 +00:00
{
"name": "stackernews",
"version": "0.1.0",
"private": true,
"scripts": {
2021-08-19 20:12:36 +00:00
"dev": "NODE_OPTIONS='--trace-warnings' next dev",
2021-06-06 00:34:48 +00:00
"build": "next build",
2021-06-06 14:09:01 +00:00
"migrate": "prisma migrate deploy",
2021-08-19 20:12:36 +00:00
"start": "NODE_OPTIONS='--trace-warnings' next start -p $PORT"
2021-03-22 20:36:10 +00:00
},
"dependencies": {
2021-09-30 15:46:58 +00:00
"@apollo/client": "^3.4.15",
2022-01-25 19:34:51 +00:00
"@opensearch-project/opensearch": "^1.0.2",
"@prisma/client": "^2.25.0",
2021-03-25 19:29:24 +00:00
"apollo-server-micro": "^2.21.2",
2021-05-20 17:21:11 +00:00
"async-retry": "^1.3.1",
"aws-sdk": "^2.1056.0",
"babel-plugin-inline-react-svg": "^2.0.1",
2021-06-27 03:09:39 +00:00
"bech32": "^2.0.0",
2021-12-15 16:50:11 +00:00
"bolt11": "^1.3.4",
2021-04-12 18:05:09 +00:00
"bootstrap": "^4.6.0",
2021-05-06 21:15:22 +00:00
"clipboard-copy": "^4.0.1",
2022-01-25 19:34:51 +00:00
"cross-fetch": "^3.1.5",
2021-08-22 15:25:17 +00:00
"domino": "^2.1.6",
2021-04-14 00:57:32 +00:00
"formik": "^2.2.6",
2021-03-25 19:29:24 +00:00
"graphql": "^15.5.0",
2021-09-30 15:46:58 +00:00
"ln-service": "^52.8.0",
2021-07-15 19:56:23 +00:00
"mdast-util-find-and-replace": "^1.1.1",
2021-09-30 15:46:58 +00:00
"next": "^11.1.2",
2021-03-25 19:29:24 +00:00
"next-auth": "^3.13.3",
2021-09-30 15:46:58 +00:00
"next-plausible": "^2.1.3",
"next-seo": "^4.24.0",
2021-11-13 13:28:08 +00:00
"nextjs-progressbar": "^0.0.13",
2021-08-22 15:25:17 +00:00
"page-metadata-parser": "^1.1.4",
2021-07-08 00:15:27 +00:00
"pageres": "^6.2.3",
2022-01-05 20:37:34 +00:00
"pg-boss": "^7.0.2",
"prisma": "^2.25.0",
2021-05-05 18:13:14 +00:00
"qrcode.react": "^1.0.1",
2021-09-30 15:46:58 +00:00
"react": "^17.0.1",
2021-04-12 18:05:09 +00:00
"react-bootstrap": "^1.5.2",
2021-08-10 22:59:06 +00:00
"react-countdown": "^2.3.2",
2021-09-30 15:46:58 +00:00
"react-dom": "^17.0.2",
2021-10-30 16:52:24 +00:00
"react-longpressable": "^1.1.1",
2021-06-27 22:28:30 +00:00
"react-markdown": "^6.0.2",
2022-02-03 22:01:42 +00:00
"react-string-replace": "^0.4.4",
2021-06-27 22:28:30 +00:00
"react-syntax-highlighter": "^15.4.3",
2021-07-16 17:32:54 +00:00
"react-textarea-autosize": "^8.3.3",
2022-01-20 20:22:10 +00:00
"react-tweet-embed": "^1.3.1",
2022-02-03 22:01:42 +00:00
"remark-directive": "^2.0.1",
2021-06-27 22:28:30 +00:00
"remark-gfm": "^1.0.0",
2021-07-08 00:15:27 +00:00
"remove-markdown": "^0.3.0",
2021-04-14 00:57:32 +00:00
"sass": "^1.32.8",
2021-06-27 03:09:39 +00:00
"secp256k1": "^4.0.2",
2021-04-14 00:57:32 +00:00
"swr": "^0.5.4",
2022-02-03 22:01:42 +00:00
"unist-util-visit": "^4.1.0",
2021-11-09 17:38:58 +00:00
"use-dark-mode": "^2.3.1",
"uuid": "^8.3.2",
2021-09-07 17:52:59 +00:00
"webln": "^0.2.2",
"yup": "^0.32.9"
2021-03-25 19:29:24 +00:00
},
2021-06-03 22:32:28 +00:00
"engines": {
2021-06-10 21:46:30 +00:00
"node": "14.17.0"
2021-06-03 22:32:28 +00:00
},
2021-03-25 19:29:24 +00:00
"standard": {
"parser": "babel-eslint",
"plugins": [
"eslint-plugin-compat"
],
"extends": [
"plugin:compat/recommended"
],
"env": {
"browser": true
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
2021-06-22 17:47:49 +00:00
"eslint": "^7.29.0",
2021-03-25 19:29:24 +00:00
"eslint-plugin-compat": "^3.9.0",
"standard": "^16.0.3"
2021-03-22 20:36:10 +00:00
}
}