forked from eidellev/inertiajs-adonisjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.37 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
{
"name": "@eidellev/inertia-adonisjs",
"version": "2.2.2",
"private": false,
"description": "InertiaJS provider for AdonisJS",
"repository": "https://github.com/eidellev/inertiajs-adonisjs",
"bugs": "https://github.com/eidellev/inertiajs-adonisjs/issues",
"main": "build/providers/InertiaProvider/index.js",
"typings": "./build/adonis-typings/index.d.ts",
"files": [
"build/adonis-typings",
"build/providers",
"build/middleware",
"build/src",
"build/instructions.js",
"build/templates"
],
"adonisjs": {
"types": "@eidellev/inertia-adonisjs",
"instructions": "./build/instructions.js",
"preloads": [
{
"file": "./start/inertia",
"environment": [
"web"
]
}
],
"providers": [
"@eidellev/inertia-adonisjs"
]
},
"license": "MIT",
"scripts": {
"lint": "tsc --noEmit && eslint . --ext=ts",
"lint:fix": "eslint . --ext=ts --fix",
"clean": "rimraf build",
"copyfiles": "copyfiles \"templates/**/*.txt\" build",
"build": "cross-env npm run clean && npm run copyfiles && tsc",
"watch": "cross-env npm run clean && npm run copyfiles && tsc -w",
"test": "nyc node japaFile.js"
},
"dependencies": {
"@types/md5": "^2.3.1",
"html-entities": "^2.3.2",
"md5": "^2.3.0"
},
"peerDependencies": {
"@adonisjs/core": ">=5"
},
"devDependencies": {
"@adonisjs/config": "^3.0.5",
"@adonisjs/core": "^5.4.0",
"@adonisjs/mrm-preset": "^3.1.0",
"@adonisjs/require-ts": "^2.0.8",
"@adonisjs/session": "^4.0.6",
"@adonisjs/sink": "^4.2.2",
"@adonisjs/validator": "^5.1.0",
"@adonisjs/view": "^3.1.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/prompt-cli": "^12.1.4",
"@poppinss/dev-utils": "^1.1.5",
"@types/common-tags": "^1.8.1",
"@types/supertest": "^2.0.11",
"adonis-preset-ts": "^2.1.0",
"common-tags": "^1.8.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^1.3.3",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^6.0.0",
"japa": "^3.1.1",
"lint-staged": "^10.5.4",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7",
"supertest": "^6.1.6",
"typescript": "^4.5.2"
}
}