mirror of
https://github.com/PretendoNetwork/website.git
synced 2025-04-02 11:11:50 -04:00
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "nodemon -r tsconfig-paths/register src/main.ts",
|
|
"build": "npm run build:pre && npm run build:compile && npm run build:post",
|
|
"start": "node dist/main.js",
|
|
"lint": "eslint --ext .ts,.js,.json src/",
|
|
"lint:fix": "eslint --fix --ext .ts,.js,.json src/",
|
|
"lint:report": "eslint --ext .ts,.js,.json --output-file eslint_report.json --format json src/",
|
|
"build:pre": "rimraf dist/",
|
|
"build:compile": "tsc && tsc-alias",
|
|
"build:post": "copyfiles -u 1 src/**/*.graphql dist/"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.14",
|
|
"@types/node": "^18.7.20",
|
|
"@typescript-eslint/eslint-plugin": "^5.38.0",
|
|
"@typescript-eslint/parser": "^5.38.0",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^8.24.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"nodemon": "^2.0.20",
|
|
"rimraf": "^3.0.2",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-alias": "^1.7.0",
|
|
"tsconfig-paths": "^4.1.0",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.1",
|
|
"neat-config": "^1.0.0"
|
|
}
|
|
}
|