forked from BeOnAuto/auto-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.53 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.53 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
{
"name": "@auto-engineer/emmett-generator",
"version": "0.2.0",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"generate:server": "tsx src/cli/index.ts",
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"type-check": "tsc --noEmit --project tsconfig.json",
"lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.specs.ts' --ignore-pattern '**/.tmp/**' --max-warnings 0 --config ../../eslint.config.js",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore",
"lint:fix": "eslint 'src/**/*.ts' --ignore-pattern '**/*.specs.ts' --ignore-pattern '**/.tmp/**' --fix --config ../../eslint.config.js",
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore"
},
"dependencies": {
"@auto-engineer/flowlang": "workspace:*",
"@event-driven-io/emmett": "^0.38.2",
"apollo-server": "^3.13.0",
"apollo-server-express": "^3.13.0",
"change-case": "^5.4.4",
"ejs": "^3.1.10",
"express": "^4.21.2",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"graphql": "^16.11.0",
"graphql-scalars": "^1.24.2",
"reflect-metadata": "^0.2.2",
"type-graphql": "^2.0.0-rc.2",
"uuid": "^11.1.0",
"web-streams-polyfill": "^4.1.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"execa": "^9.6.0",
"prettier": "^3.6.1",
"type-fest": "^4.41.0"
}
}