-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "autoproject",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"check": "node dist/check.js",
"start": "node dist/index.js",
"compileNearley": "echo '/* eslint-disable */' > src/configFormat/json.js && nearleyc src/configFormat/json.ne >> src/configFormat/json.js",
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --format stylish",
"lint": "run-p lint:*",
"fix:prettier": "yarn lint:prettier --write",
"fix:eslint": "yarn lint:eslint --fix",
"fix": "run-s fix:prettier fix:eslint"
},
"dependencies": {
"@octokit/app": "14.1.0",
"@octokit/graphql-schema": "15.25.0",
"@prantlf/jsonlint": "16.0.0",
"dotenv": "16.4.5",
"fuse.js": "6.6.2",
"log4js": "6.9.1",
"mitt": "3.0.1",
"nearley": "2.20.1",
"yaml": "2.6.1",
"yargs": "17.7.2",
"zod": "3.23.8"
},
"devDependencies": {
"@octokit/types": "13.6.1",
"@tsconfig/node20": "20.1.4",
"@types/nearley": "2.11.5",
"@types/node": "20.17.6",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-love": "43.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"vitest": "2.1.5"
}
}