-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·104 lines (104 loc) · 2.57 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
{
"name": "radonis-monorepo",
"private": true,
"description": "Monorepo containing all Radonis packages",
"packageManager": "pnpm@7.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"format": "turbo run format",
"test": "turbo run test",
"changeset": "changeset",
"prepare": "husky install",
"pre-commit": "lint-staged",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"commit": "git-cz",
"ci:publish": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/microeinhundert/radonis.git"
},
"bugs": {
"url": "https://github.com/microeinhundert/radonis/issues"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 8.0.0"
},
"keywords": [
"adonisjs",
"radonis"
],
"author": "Leon Seipp <l.seipp@microeinhundert.com>",
"license": "MIT",
"devDependencies": {
"@adonisjs/mrm-preset": "^5.0.3",
"@adonisjs/require-ts": "^2.0.13",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@japa/assert": "^1.4.1",
"@japa/core": "^7.3.3",
"@japa/run-failed-tests": "^1.1.1",
"@japa/runner": "^2.5.1",
"@japa/spec-reporter": "^1.3.3",
"adonis-preset-ts": "^2.1.0",
"commitizen": "^4.3.0",
"copyfiles": "2.4.1",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-adonis": "2.1.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"mrm": "^4.1.14",
"openapi-types": "^12.1.0",
"prettier": "2.8.7",
"turbo": "^1.8.6",
"typescript": "5.0.2"
},
"dependencies": {
"@adonisjs/ace": "^11.3.1",
"@adonisjs/core": "^5.9.0",
"@adonisjs/i18n": "^1.5.6",
"@adonisjs/session": "^6.4.0",
"@adonisjs/sink": "^5.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"mrmConfig": {
"core": false,
"license": "MIT",
"services": [
"github-actions"
],
"minNodeVersion": "16.0.0",
"probotApps": [],
"runGhActionsOnWindows": false
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"@adonisjs/application"
],
"allowedVersions": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}
}
}