-
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.49 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.49 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": "{{{ NAME }}}",
"version": "0.1.0",
"private": true,
"description": "{{{ DESCRIPTION }}}",
"author": "Olavo Amorim Santos<olavo.santos@micra.dev>",
"license": "MIT",
"scripts": {
"build:code": "vite build --config .viterc.ts",
"build:types": "tsc -p tsconfig.json",
"build": "concurrently 'pnpm:build:*'",
"dev:code": "nodemon --ext 'ts,tsx' --exec 'vite-node src/entry.ts --config .viterc.ts'",
"dev:types": "nodemon --ext 'ts,tsx' --exec 'pnpm build:types'",
"dev": "concurrently 'pnpm:dev:*'",
"lint": "eslint --ext .ts,.tsx .",
"prepare": "husky install .config/husky",
"test:coverage": "vitest run --coverage --config .viterc.ts --passWithNoTests",
"test:dev": "vitest --config .viterc.ts",
"test": "vitest run --config .viterc.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@micra/commit-lint-config": "next",
"@micra/core": "next",
"@micra/eslint-config": "next",
"@micra/typescript-config": "next",
"@micra/vite-config": "next",
"@types/node": "^18.15.11",
"@vitest/coverage-c8": "^0.29.7",
"c8": "^7.11.0",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.0",
"tsc-alias": "^1.8.5",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vite-node": "^0.29.8",
"vitest": "^0.29.8"
},
"dependencies": {
"@micra/application": "next"
}
}