-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 3.25 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "exlint.io",
"version": "1.23.0",
"private": true,
"description": "Exlint dashboard",
"author": "Exlint <dev@exlint.io> (https://exlint.io)",
"license": "UNLICENSED",
"scripts": {
"preinstall": "npx only-allow pnpm",
"husky:install": "husky install",
"git:config": "git config --local include.path ../.gitconfig",
"setdev": "run-p husky:install git:config",
"onboarding": "node ./scripts/onboarding.cjs",
"prepare": "is-ci || is-docker || run-s setdev onboarding",
"prisma-format": "prisma format",
"prisma-push:dev": "dotenv -e ./prisma/.env.development prisma db push --schema ./prisma/schema.prisma",
"prisma-push:prod": "dotenv -e ./prisma/.env.production prisma db push --schema ./prisma/schema.prisma",
"cluster:start": "pnpm exec ./docker/scripts/start-cluster.sh",
"cluster:stop": "pnpm exec ./docker/scripts/stop-cluster.sh",
"cluster:restart": "pnpm exec ./docker/scripts/restart-cluster.sh",
"db:clean": "rimraf ./.volumes/mongo",
"lint:root": "eslint -c ./.eslintrc.cjs --ignore-pattern \"apps\" --ignore-pattern \"packages\" \"**/*.{ts,js,cjs}\" --resolve-plugins-relative-to .",
"lint:nested": "nx run-many --target=lint --nx-bail",
"lint:all": "run-p lint:root lint:nested",
"type-check:root": "tsc --project ./tsconfig.json",
"type-check:nested": "nx run-many --target=type-check --nx-bail",
"type-check:all": "run-p type-check:root type-check:nested",
"inflint": "inflint -c ./inflint.config.cjs",
"depcheck:root": "depcheck --config ./.depcheckrc.json",
"depcheck:nested": "nx run-many --target=depcheck --nx-bail",
"depcheck:all": "run-p depcheck:root depcheck:nested",
"prettier": "prettier --check **/*.{ts,js,cjs,json,yaml}",
"cspell": "cspell lint -c ./cspell.json --gitignore --no-progress --no-summary **",
"test:ci": "playwright test -c ./playwright.config.ts",
"test:local": "dotenv -e ./tests/.env playwright test -c ./playwright.config.ts",
"test:debug": "dotenv -e ./tests/.env -- playwright test -c ./playwright.config.ts --debug",
"build:nested": "nx run-many --target=build --nx-bail"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@exlint.io/inflint": "2.1.1",
"@playwright/test": "1.49.0",
"@prisma/client": "4.16.2",
"@types/node": "20.17.9",
"@types/totp-generator": "0.0.8",
"@types/wait-on": "5.3.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chalk": "4.1.2",
"commitizen": "4.3.1",
"cspell": "8.16.1",
"cz-vinyl": "2.5.4",
"depcheck": "1.4.7",
"docker-compose": "0.24.8",
"dotenv-cli": "7.4.4",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-unicorn": "47.0.0",
"eslint-plugin-unused-imports": "3.2.0",
"figlet": "1.8.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"is-docker": "3.0.0",
"lint-staged": "15.2.10",
"npm-run-all": "4.1.5",
"nx": "17.3.2",
"open": "10.1.0",
"playwright": "1.49.0",
"pnpm": "8.14.1",
"prettier": "2.8.8",
"prettier-plugin-sh": "0.14.0",
"prisma": "4.16.2",
"rimraf": "5.0.10",
"stylelint": "15.11.0",
"totp-generator": "0.0.14",
"typescript": "5.7.2",
"wait-on": "7.2.0"
},
"packageManager": "pnpm@8.14.1",
"engines": {
"pnpm": "8.14.1",
"node": "20.18.1"
}
}