-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1007 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
{
"private": true,
"name": "vay.js",
"version": "3.0.0",
"license": "MIT",
"repository": "https://github.com/IamSebastianDev/vay.js.git",
"author": "Sebastian <sebastian@iamsebastian.dev>",
"workspaces": [
"packages/**/*",
"docs"
],
"scripts": {
"preci": "rm -rf node_modules",
"ci": "yarn install --frozen-lockfile",
"setup": "npx husky init",
"build": "turbo build",
"dev": "turbo dev",
"docs:dev": "yarn workspace @repo/docs docs:dev",
"docs:build": "yarn workspace @repo/docs docs:build",
"test": "turbo test",
"test:coverage": "turbo test:coverage",
"serve": "yarn workspace @vayjs/vay serve --open"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.0.3",
"alex": "^11.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"turbo": "^1.12.5",
"typescript": "^5.4.2"
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
}
}