-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
{
"name": "fster",
"version": "0.8.1",
"description": "Make things ƒast, Break things ƒast, Learn things ƒster",
"repository": "https://github.com/Harambee-Dev/fster.git",
"author": "William Luke <[email protected]>",
"bin": {
"fster": "./dist/bin/fster.js"
},
"license": "MIT",
"scripts": {
"watch": "yarn tsc -d -w -p tsconfig.json",
"cli": "ts-node ./src/bin/fster.ts",
"prepublish": "dotenv -- yarn rimraf ./config.db && yarn generate && yarn migrate && yarn build",
"build": "yarn generate && yarn tsc -d -p tsconfig.json",
"postinstall": "yarn generate",
"generate": "yarn prisma generate",
"migrate": "yarn prisma migrate dev --preview-feature",
"studio": "yarn prisma studio",
"stable": " dotenv -- yarn -s dripip stable",
"next": "yarn -s dripip preview",
"test": "jest"
},
"devDependencies": {
"@types/adm-zip": "0.4.33",
"@types/ci-info": "2.0.0",
"@types/clui": "0.3.0",
"@types/fs-extra": "9.0.6",
"@types/git-url-parse": "9.0.0",
"@types/inquirer": "7.3.1",
"@types/jest": "26.0.20",
"@types/marked": "1.2.1",
"@types/node": "14.14.22",
"@types/parse-git-config": "3.0.0",
"@types/request": "2.48.5",
"@types/semver": "7.3.4",
"dotenv-cli": "4.0.0",
"dripip": "0.10.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"strip-ansi": "6.0.0",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"types-package-json": "2.0.25",
"typescript": "4.1.3"
},
"dependencies": {
"@prisma/cli": "2.15.0",
"@prisma/client": "2.15.0",
"adm-zip": "0.5.1",
"chalk": "4.1.0",
"ci-info": "2.0.0",
"clui": "0.3.6",
"execa": "5.0.0",
"fast-glob": "3.2.5",
"fs-extra": "9.1.0",
"fs-jetpack": "4.1.0",
"fuzzy": "0.1.3",
"git-url-parse": "11.4.3",
"inquirer": "7.3.3",
"inquirer-autocomplete-prompt": "1.3.0",
"marked": "1.2.7",
"meow": "9.0.0",
"parse-git-config": "3.0.0",
"request": "2.88.2",
"semver": "7.3.4",
"terminal-link": "2.1.1"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist",
"config.db",
"prisma"
]
}