-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 918 Bytes
/
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
{
"name": "gitlab-ci-ui",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.build.json",
"test": "vitest",
"dev": "vite",
"coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitest/coverage-v8": "^1.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.1.5",
"vitest": "^1.3.0"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"rimraf": "^5.0.5",
"type-fest": "^4.11.1",
"vite-tsconfig-paths": "^4.3.1",
"zod": "^3.22.4"
}
}