-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "modelorama",
"version": "0.0.15",
"main": "index.js",
"bin": {
"pot": "bin/cli.js"
},
"description": "Tame schemas once and for all!",
"license": "MIT",
"author": "Alvaro Cabrera <pateketrueke@gmail.com> (https://soypache.co)",
"repository": {
"type": "git",
"url": "https://github.com/grownjs/modelorama"
},
"bugs": "https://github.com/grownjs/modelorama/issues",
"types": "index.d.ts",
"files": [
"bin/**",
"*.d.ts",
"index.js"
],
"engines": {
"node": "*"
},
"scripts": {
"lint": "eslint bin/*.js *.js",
"test": "npm run lint && ts-node --type-check tests/check-server && ts-node --type-check tests/check-types",
"pretest": "bin/cli.js model schema tests/schema && bin/cli.js model types tests/schema --app ./tests/main.js"
},
"dependencies": {
"@grown/model": "^0.0.63",
"fast-glob": "^3.3.0",
"json-schema-to": "^0.0.37",
"sastre": "^0.3.10",
"typedoc": "^0.24.8"
},
"devDependencies": {
"@grown/graphql": "^0.0.20",
"@grown/grpc": "^0.0.19",
"@grown/router": "^0.0.21",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"grown": "^1.4.21",
"sqlite3": "^5.0.2",
"ts-node": "^10.4.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"grown": "*"
}
}