-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "nexquik",
"version": "1.2.7",
"description": "Generate Next.js components from your Prisma Schema",
"main": "dist/index.js",
"repository": "https://github.com/bcanfield/nexquik",
"bin": {
"nexquik": "./dist/index.js"
},
"scripts": {
"build": "npm-run-all build:*",
"build:1": "npm run clean",
"build:2": "npx tsc",
"build:3": "npm run copy-files2",
"dev": "npm run build && node dist/index.js",
"test": "jest",
"start": "node dist/index.js",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 \"lib/**/*\" dist",
"copy-files2": "copyfiles -u 1 \"templateApp/**/*\" dist/templateApp"
},
"author": "Brandin Canfield",
"license": "MIT",
"keywords": [
"Prisma",
"TypeScript",
"Next.js",
"React"
],
"dependencies": {
"@prisma/internals": "^4.14.1",
"chalk": "^4.1.2",
"commander": "^10.0.1",
"eslint": "^8.41.0",
"figlet": "^1.6.0",
"prettier": "^2.8.8",
"ts-toolbelt": "^9.6.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^8.40.0",
"@types/figlet": "^1.5.6",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"babel-jest": "^29.5.0",
"copyfiles": "^2.4.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
}
}