-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "prettier-regression-testing",
"version": "1.0.0",
"repository": "ssh://[email protected]/sosukesuzuki/prettier-regression-testing.git",
"license": "MIT",
"author": "sosukesuzuki <[email protected]>",
"main": "index.js",
"scripts": {
"fix": "prettier . -w",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .ts",
"lint:prettier": "prettier . --check",
"lint:tsc": "tsc --noEmit",
"test": "jest",
"build": "tsc"
},
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@excalidraw/prettier-config": "^1.0.2",
"ajv": "^8.6.2",
"ci-info": "^3.8.0",
"execa": "^4.0.3",
"semver": "^7.5.4"
},
"devDependencies": {
"@swc/core": "^1.3.68",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.19",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.6.1",
"npm-run-all": "^4.1.5",
"prettier": "3.0.0",
"typescript": "^5.1.6"
},
"volta": {
"node": "18.16.1"
}
}