badgen.net/package.json

84 wiersze
2.3 KiB
JSON
Czysty Zwykły widok Historia

2018-06-26 05:39:49 +00:00
{
"name": "badgen.net",
2018-06-26 05:39:49 +00:00
"description": "Badge generating service",
"author": "Amio <amio.cn@gmail.com>",
"license": "ISC",
2018-10-16 02:24:21 +00:00
"private": true,
2018-06-26 05:39:49 +00:00
"scripts": {
2019-08-30 03:26:06 +00:00
"lint": "eslint --ext .js,.ts,.jsx .",
2019-07-12 08:18:18 +00:00
"build:api": "tsc -p server.tsconfig.json",
"build:web": "next build && next export -o dist",
2022-12-31 08:23:34 +00:00
"build-0": "npm run tools && npm run build:web && npm run build:api",
2022-12-31 10:37:29 +00:00
"build": "npm run tools && next build",
2022-12-31 08:28:59 +00:00
"dev": "next dev",
2019-06-07 12:49:58 +00:00
"dev:api": "nodemon --config nodemon.json index.ts",
2018-09-04 07:00:54 +00:00
"dev:web": "next",
"tools": "tsx tools/gen-examples.ts",
2019-06-07 12:49:58 +00:00
"start": "node dist/index.js"
2018-06-26 05:39:49 +00:00
},
2018-09-06 09:54:28 +00:00
"standard": {
2019-07-12 02:19:41 +00:00
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
2018-09-06 09:54:28 +00:00
},
2018-06-26 05:39:49 +00:00
"dependencies": {
"@sentry/integrations": "^6.6.0",
"@sentry/node": "^6.6.0",
2020-12-13 08:45:44 +00:00
"badgen": "^3.2.2",
2022-03-27 04:08:42 +00:00
"badgen-icons": "^0.22.0",
2022-03-27 04:36:59 +00:00
"byte-size": "^8.1.0",
2021-04-19 03:47:07 +00:00
"date-fns": "^2.21.1",
2022-12-31 06:29:41 +00:00
"eslint-config-next": "^13.1.1",
2022-12-31 08:23:34 +00:00
"got": "^12.5.3",
"haxe-rpc-client": "^1.0.0",
2020-10-07 13:07:51 +00:00
"humanize-duration": "^3.24.0",
2018-09-07 07:13:08 +00:00
"lodash.debounce": "^4.0.8",
"measurement-protocol": "^0.1.1",
2019-05-10 03:37:08 +00:00
"micro": "^9.3.4",
2022-03-27 04:41:23 +00:00
"millify": "^4.0.0",
"my-way": "^2.0.0",
"original-url": "^1.2.3",
2021-04-19 03:47:07 +00:00
"semver": "^7.3.5",
"serve-handler": "^6.1.3",
2022-05-24 10:42:22 +00:00
"serve-marked": "^4.0.0",
"url-parse": "^1.5.9",
"webextension-store-meta": "^1.0.3",
2022-05-24 03:41:02 +00:00
"yaml": "^2.1.0"
2018-06-26 05:39:49 +00:00
},
"devDependencies": {
2021-04-19 03:47:07 +00:00
"@babel/core": "^7.13.15",
2022-12-31 06:29:41 +00:00
"@next/font": "^13.1.1",
2021-04-19 03:47:07 +00:00
"@types/fs-extra": "^9.0.11",
"@types/lodash.debounce": "^4.0.6",
2021-04-19 03:47:07 +00:00
"@types/micro": "^7.3.4",
2022-12-31 08:28:59 +00:00
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
2021-04-19 03:47:07 +00:00
"@types/react-dom": "^16.9.12",
2020-10-07 13:07:51 +00:00
"@types/semver": "^7.3.4",
2021-04-19 03:47:07 +00:00
"@types/supertest": "^2.0.11",
2019-10-28 16:19:11 +00:00
"@types/url-parse": "^1.4.3",
2022-03-27 04:34:33 +00:00
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
2019-05-25 12:19:11 +00:00
"@zeit/next-typescript": "^1.1.1",
2022-05-24 10:47:23 +00:00
"csstype": "^3.1.0",
2022-12-31 06:29:41 +00:00
"eslint": "^8.30.0",
2021-04-19 03:47:07 +00:00
"eslint-plugin-react": "^7.23.2",
2022-05-24 03:08:00 +00:00
"fs-extra": "^10.1.0",
"next": "^13.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-03-27 04:41:55 +00:00
"supertest": "^6.2.2",
"tsx": "^3.12.1",
2022-12-31 06:29:41 +00:00
"typescript": "^4.9.4"
},
"engines": {
2022-12-31 08:23:34 +00:00
"node": ">=18.x",
"npm": ">=8.x"
},
"volta": {
2022-12-31 08:23:34 +00:00
"node": "18.10.0",
"npm": "8.2.0"
}
2018-06-26 05:39:49 +00:00
}