Void/package.json

154 lines
3.2 KiB
JSON

{
"name": "void",
"version": "0.2.2",
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "NODE_ENV=development node server",
"build": "npm-run-all build:schema build:next",
"build:next": "next build",
"build:schema": "prisma generate --schema=prisma/schema.prisma",
"start:server": "node server",
"start:twilight": "ts-node --compiler-options \"{\\\"module\\\":\\\"commonjs\\\"}\" twilight",
"start": "npm-run-all -p start:server start:twilight",
"prepare": "husky install",
"lint": "next lint --fix"
},
"dependencies": {
"@chakra-ui/react": "^1.6.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@iarna/toml": "^2.2.5",
"@prisma/client": "^3.1.1",
"@reduxjs/toolkit": "^1.6.1",
"argon2": "^0.28.2",
"cookie": "^0.4.1",
"copy-to-clipboard": "^3.3.1",
"discord.js": "12.5.3",
"formik": "^2.2.9",
"framer-motion": "^4",
"multer": "^1.4.3",
"next": "^11.1.2",
"prisma": "^3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-feather": "^2.0.9",
"react-redux": "^7.2.5",
"react-responsive": "^9.0.0-beta.4",
"react-syntax-highlighter": "^15.4.4",
"url-schemify": "^0.1.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "^16.10.1",
"@types/react": "^17.0.20",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"husky": "^7.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.2",
"yarn-run-all": "^3.1.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"parserPreset": "conventional-changelog-conventionalcommits",
"rules": {
"body-leading-blank": [
1,
"always"
],
"body-max-line-length": [
2,
"always",
100
],
"footer-leading-blank": [
1,
"always"
],
"footer-max-line-length": [
2,
"always",
100
],
"header-max-length": [
2,
"always",
100
],
"subject-case": [
2,
"never",
[
"sentence-case",
"start-case",
"pascal-case",
"upper-case"
]
],
"subject-empty": [
2,
"never"
],
"subject-full-stop": [
2,
"never",
"."
],
"type-case": [
2,
"always",
"lower-case"
],
"type-empty": [
2,
"never"
],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
],
"scope-enum": [
1,
"always",
[
"prisma",
"scripts",
"server",
"pages",
"config",
"api",
"hooks",
"twilight",
"components",
"middleware",
"redux",
"lib",
"assets"
]
]
}
}
}