-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.46 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
{
"name": "skeet-graphql-only",
"version": "1.4.1",
"description": "Skeet Framework Boilerplate with GraphQL Only",
"repository": "https://github.com/elsoul/skeet-graphql-only.git",
"author": "ELSOUL LABO B.V.",
"license": "Apache-2.0",
"private": false,
"scripts": {
"format": "prettier --write --ignore-unknown .",
"lint": "eslint --ext .ts,.tsx --fix .",
"skeet": "run-p skeet:*",
"skeet:graphql": "yarn --cwd ./graphql dev",
"update:packages": "ncu -u -x 'node-fetch,glob' && yarn",
"db:deploy": "yarn --cwd ./graphql db:deploy",
"db:seed": "yarn --cwd ./graphql db:seed",
"dev": "run-p 'dev:*'",
"docker:build": "cd ./graphql && docker build -f Dockerfile.dev -t skeet-graphql .",
"docker:run": "docker run -p 3000:3000 --env-file ./graphql/.env -d --rm --name skeet-graphql skeet-graphql",
"docker:rm": "docker rm -f skeet-graphql",
"discord": "npx ts-node -r tsconfig-paths/register --transpile-only ./.github/workflows/runDiscordChangeLog.ts"
},
"dependencies": {},
"devDependencies": {
"@skeet-framework/discord-utils": "^0.2.13",
"@skeet-framework/utils": "^1.2.3",
"dotenv": "16.3.1",
"esbuild": "0.19.7",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"nodemon": "3.0.1",
"npm-check-updates": "16.14.11",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"ts-jest": "29.1.1",
"ts-loader": "9.5.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.3.2"
}
}