-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.22 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
{
"name": "create-axiom-app",
"version": "0.1.1",
"description": "create a new axiom project",
"private": false,
"bin": {
"create-axiom-app": "dist/index.js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "nodemon ./src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsup --config ./tsup.config.ts",
"build:watch": "tsup --config ./tsup.config.ts --watch",
"lint": "tsup ./src",
"prettier": "prettier . --check --ignore-path .prettierignore",
"prettier:fix": "prettier . --write --ignore-path .prettierignore",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"start": "node ./dist/index.js"
},
"keywords": [
"axiom",
"backend",
"TypeScript",
"requests",
"express"
],
"author": "Sameh A. Elalfi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/toctive-com/create-axiom-app.git"
},
"bugs": {
"url": "https://github.com/toctive-com/create-axiom-app/issues"
},
"homepage": "https://github.com/toctive-com/create-axiom-app#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/ejs": "^3.1.2",
"@types/figlet": "^1.5.6",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.5.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@vitest/coverage-v8": "^0.34.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.34.2"
},
"dependencies": {
"@colors/colors": "^1.6.0",
"cli-progress": "^3.12.0",
"ejs": "^3.1.9",
"figlet": "^1.6.0",
"inquirer": "^9.2.10",
"yargs": "^17.7.2"
}
}