-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nexquik",
"version": "3.2.1",
"description": "Generate Next.js components from your Prisma Schema",
"main": "dist/index.js",
"repository": "https://github.com/bcanfield/nexquik",
"bin": {
"nexquik": "./dist/index.js",
"prisma-generator-nexquik": "./dist/prismaGenerator.js"
},
"scripts": {
"build": "npm-run-all build:*",
"build:1": "npm run clean",
"build:2": "npx tsc",
"build:3": "npm run copy-files",
"build:4": "chmod -R 777 dist/",
"install-locally": "npm-run-all install-locally:*",
"install-locally:1": "npm run build",
"install-locally:2": "rm -f ./nexquik.tgz",
"install-locally:3": "npm pack --force",
"install-locally:4": "mv \"$(ls *.tgz)\" \"nexquik.tgz\"",
"install-locally:5": "npm i && npm i --save-dev ./nexquik.tgz",
"dev": "nodemon",
"dev:1": "npm run install-locally",
"dev:2": "rm -rf ./devNexquikApp",
"dev:3": "npm run nexquikInit",
"dev:4": "cd ./devNexquikApp && npm i && npm run generate && npm run push --accept-data-loss && npm run dev",
"nexquikInit": "nexquik group --name Main --init --rootName nexquik --schema ./prisma/dev.prisma --output ./devNexquikApp --appTitle Nexquik",
"nexquikHelp": "nexquik -h",
"test": "jest --silent=false",
"clean": "rimraf dist/",
"generate": "prisma generate",
"copy-files": "npm-run-all copy-files:*",
"copy-files:1": "copyfiles -a -u 1 \"src/templateRoot/**/*\" dist",
"copy-files:2": "copyfiles template.eslintrc.json dist",
"live-example-install": "cd example && npm i"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,tsx,css,",
"exec": "npm-run-all dev:*",
"delay": 500
},
"author": "Brandin Canfield",
"license": "MIT",
"keywords": [
"Prisma",
"TypeScript",
"Next.js",
"React"
],
"dependencies": {
"@prisma/client": "^5.1.1",
"@prisma/internals": "^4.14.1",
"@prisma/sdk": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/eslint-plugin-tslint": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"nexquik": "^3.2.0",
"next": "^13.4.19",
"ora": "^5.4.1",
"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/cli-progress": "^3.11.0",
"@types/eslint": "^8.40.0",
"@types/figlet": "^1.5.6",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/prettier": "^2.7.2",
"babel-jest": "^29.5.0",
"copyfiles": "^2.4.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0",
"prisma": "^5.1.1",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
}
}