forked from ridafkih/schemix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "schemix",
"version": "1.14.1",
"description": "Schemix allows you to programmatically create Prisma schemas using TypeScript",
"repository": {
"url": "https://github.com/ridafkih/schemix"
},
"readme": "https://github.com/ridafkih/schemix/blob/main/README.md",
"main": "dist/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc --declaration && tsc-alias",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "yarn lint --fix"
},
"keywords": [
"prisma",
"schema",
"mix"
],
"author": "Rida F'kih",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vitest/coverage-c8": "^0.24.3",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.7",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.4",
"vitest": "^0.24.3"
},
"dependencies": {}
}