-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.63 KB
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
{
"name": "create-backcore-js",
"version": "1.0.1",
"description": "Create a minimal back-end app with a simple command.",
"main": "index.js",
"files": [
"dist/",
"bin/"
],
"bugs": {
"url": "https://github.com/ConanGH-S/backcore-js/issues",
"email": "blandon0207s@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConanGH-S/backcore-js.git"
},
"homepage": "https://github.com/ConanGH-S/backcore-js",
"scripts": {
"start": "node dist/index.js",
"start:dev": "nodemon dist/index.js",
"start:tsc-dev": "tsc --watch",
"start:tsc": "tsc",
"test": "jest",
"build": "gulp"
},
"bin": {
"create-backcore-js": "./bin/createProject.js"
},
"keywords": [
"create",
"backend app generate",
"api-rest",
"apirest",
"backend",
"node",
"javascript"
],
"author": "conangh",
"license": "ISC",
"preferGlobal": true,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.7",
"@types/prompts": "2.4.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"gulp": "4.0.2",
"gulp-copy": "4.0.1",
"gulp-shell": "0.8.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "5.3.3"
},
"dependencies": {
"colors": "1.4.0",
"fs-extra": "^11.2.0",
"prompts": "2.4.2"
}
}