This repository was archived by the owner on Feb 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.64 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.64 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
{
"name": "@micra/core-test-utils",
"version": "0.0.0",
"description": "Mocked implementation of Micra's core interfaces",
"repository": {
"type": "git",
"url": "git+https://github.com/micrajs/core-test-utils.git"
},
"author": "Olavo Amorim Santos<olavo.santos@micra.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/micrajs/community/issues?q=is:issue+is:open+label:%22Project:+core-test-utils%22+label:%22Type:+fix%22"
},
"scripts": {
"prepare:husky": "husky install .config/husky",
"build": "concurrently 'pnpm:build:*'",
"build:code": "vite build --config .viterc.ts",
"build:types": "tsc -p tsconfig.json && tsc-alias --silent -p tsconfig.json --dir .",
"dev": "concurrently 'pnpm:dev:*'",
"dev:code": "pnpm build:code -- --watch",
"dev:types": "nodemon --ext 'ts,tsx' --exec 'pnpm build:types'",
"lint": "eslint --ext .ts,.tsx .",
"test": "vitest run --config .viterc.ts",
"test:coverage": "vitest run --coverage --config .viterc.ts",
"test:dev": "vitest --config .viterc.ts"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@micra/commit-lint-config": "^0.1.0-next.1",
"@micra/eslint-config": "^0.1.0-next.1",
"@micra/typescript-config": "^0.1.0-next.1",
"@micra/vite-config": "^0.1.0-next.2",
"@types/node": "^17.0.21",
"c8": "^7.11.0",
"concurrently": "^7.0.0",
"eslint": "^8.11.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.6",
"nodemon": "^2.0.15",
"prettier": "^2.6.0",
"tsc-alias": "^1.6.4",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vitest": "^0.6.1"
}
}