This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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
{
"name": "@printerframework/cli",
"description": "🖨️ Automation Tooling for Next, Redux and Prisma.",
"version": "2.2.5-1",
"private": false,
"preferGlobal": true,
"repository": "https://github.com/PrinterFramework/CLI.git",
"author": "Chris Cates <[email protected]>",
"license": "AGPLv3",
"scripts": {
"start": "npm run build && node dist/src/printer.js",
"build": "tsc && npx ts-node prepend.ts && npm run move",
"move": "cp -r src/templates dist/src",
"lint": "eslint src --ext ts",
"test": "jest",
"codecov": "CODECOV_TOKEN='0644b00b-7cc1-4392-9427-1e8387f28ffb' npx codecov",
"convert": "npm run build && node dist/src/converter.js"
},
"bin": {
"printer": "./dist/src/printer.js"
},
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/prompts": "^2.4.5",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"codecov": "^3.8.3",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^11.0.0",
"fs-jetpack": "^5.1.0",
"prompts": "^2.4.2"
}
}