This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.74 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "adonisjs-flow",
"version": "0.3.0",
"description": "AdonisJS Flow is a application starter kit for AdonisJS that includes a lot of the common features you would need to build a web application.",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"clean": "del-cli build",
"format": "prettier --write .",
"commit": "cz",
"copyfiles": "copyfiles \"templates/**/*.txt\" \"instructions.md\" build",
"test": "node -r @adonisjs/require-ts/build/register bin/test.ts",
"compile": "npm run clean && tsc && npm run copyfiles",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"release": "np --no-tests --message=\"chore(release): %s\"",
"version": "npm run build",
"pack": "npm run build && npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/britzdylan/adonis-flow.git"
},
"author": "Dylan Britz",
"license": "MIT",
"bugs": {
"url": "https://github.com/britzdylan/adonis-flow/issues"
},
"homepage": "https://github.com/britzdylan/adonis-flow#readme",
"devDependencies": {
"@adonisjs/core": "^5.9.0",
"@adonisjs/mrm-preset": "^5.0.3",
"@adonisjs/require-ts": "^2.0.13",
"@adonisjs/sink": "^5.4.3",
"@types/node": "^20.8.7",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.1.0",
"eslint": "^8.52.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.0.1",
"mrm": "^4.1.22",
"np": "^8.0.4",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"copyfiles": "^2.4.1"
},
"mrmConfig": {
"core": false,
"license": "MIT",
"services": [],
"minNodeVersion": "16.13.1",
"probotApps": []
},
"files": [
"build/templates",
"build/appFiles.js",
"build/instructions.js",
"build/scaffold.js",
"build/types.js",
"build/README.md",
"build/instructions.md"
],
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptPackage"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
},
"eslintIgnore": [
"build"
],
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"np": {
"yarn": false,
"contents": "."
},
"main": "index.js",
"adonisjs": {
"instructions": "./build/instructions.js",
"instructionsMd": "./build/instructions.md"
}
}