-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
79 lines (79 loc) · 2.2 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
{
"name": "@prisma/nuxt",
"version": "0.0.34",
"description": "Integrate Nuxt with Prisma",
"repository": {
"type": "git",
"url": "git+https://github.com/prisma/nuxt-prisma.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"docs": "cd docs && npm run dev",
"release": "npm run lint && npm run prepack && changelogen --release && npm publish --access public && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"link": "npm link",
"clean:playground": "rm -r ./playground/prisma ./playground/lib ./playground/node_modules",
"prepare": "husky install",
"commit": "npx git-cz",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.3.3",
"@nuxt/kit": "^3.11.2",
"@prisma/client": "^5.22.0",
"chalk": "^5.3.0",
"defu": "^6.1.4",
"execa": "^8.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.11.2",
"@types/node": "^20.11.17",
"@types/prompts": "^2.4.9",
"changelogen": "^0.5.5",
"commitizen": "^4.3.1",
"cz-customizable": "^7.2.1",
"eslint": "^8.56.0",
"husky": "^8.0.0",
"inquirer": "^9.3.7",
"nuxt": "^3.11.2",
"prettier": "3.2.5",
"prisma": "^5.22.0",
"semantic-release": "^24.2.0",
"vitest": "^1.2.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
}
}