-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
{
"name": "i18next-prisma-backend",
"version": "0.0.1",
"description": "Use i18next with Prisma ORM as backend",
"homepage": "https://github.com/aydrian/i18next-prisma-backend",
"repository": {
"type": "git",
"url": "https://github.com/aydrian/i18next-prisma-backend"
},
"bugs": {
"url": "https://github.com/aydrian/i18next-prisma-backend/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"typecheck": "tsc",
"dev": "rimraf dist && tsup --watch",
"build": "rimraf dist && env NODE_ENV=production tsup",
"lint:fix": "eslint ./src --ext .ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\" ",
"lint": "npm run lint:format && npm run lint:fix",
"test": "vitest",
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"pretest": "run-s test:create-prisma-environment test:install-prisma-environment",
"coverage": "vitest run --coverage"
},
"keywords": [
"i18next",
"prisma",
"i18next-backend",
"i18next-prisma-backend"
],
"author": "Aydrian Howard <[email protected]> (https://itsaydrian.com)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"rimraf": "^5.0.1",
"tsup": "^7.1.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
},
"files": [
"dist"
],
"peerDependencies": {
"@prisma/client": "^5.0.0"
},
"dependencies": {
"dotenv": "^16.3.1",
"i18next": "^23.4.1"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}