-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "prisma-viewer",
"version": "1.3.1",
"description": "Displays Prisma Datamodels/Schemas",
"main": "index.js",
"scripts": {
"build:cli": "tsc -d",
"build:web": "parcel build src/index.ts -d public",
"build": "npm run clean && npm run build:cli && npm run build:web",
"dev:web": "parcel watch src/index.ts -d public",
"dev:cli": "ts-node ./src/bin.ts",
"clean": "rimraf ./dist",
"dev": "npm run dev:web & npm run dev:cli",
"release": "auto shipit"
},
"bin": {
"pv": "dist/bin.js"
},
"author": "",
"license": "ISC",
"browserslist": [
"last 1 Chrome versions"
],
"repository": {
"type": "git",
"url": "https://github.com/williamluke4/prisma-viewer.git"
},
"dependencies": {
"@prisma/sdk": "2.5.0",
"ace": "^1.3.0",
"arg": "^4.1.3",
"chalk": "^4.1.0",
"dagre": "^0.8.5",
"express": "^4.17.1",
"fastify": "^3.2.1",
"fastify-static": "^3.2.0",
"global-dirs": "^2.0.1",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"open": "^7.1.0",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2",
"strip-indent": "^3.0.0",
"tslib": "^2.0.1"
},
"devDependencies": {
"@auto-it/conventional-commits": "^9.50.11",
"auto": "^9.50.11",
"@types/dagre": "^0.7.44",
"@types/lodash": "^4.14.159",
"@zeit/ncc": "^0.22.3",
"nodemon": "^2.0.4",
"typescript": "^3.9.7"
}
}