-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
46
47
48
49
50
51
52
53
{
"name": "opintents",
"version": "0.0.0",
"private": true,
"repository": "github:ananya150/opintents",
"license": "GPL-3.0",
"author": "ananya150 <[email protected]>",
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --topological --verbose run build",
"build:watch": "yarn workspaces foreach --parallel --interlaced run build:watch",
"clean": "rm -rf dist && rm -rf types",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"postinstall": "husky install",
"prepublish": "yarn build",
"test": "yarn workspaces foreach --topological --verbose run test",
"test:watch": "yarn workspaces foreach --parallel --interlaced run test:watch",
"client:dev": "yarn workspace @opintents/client dev",
"shared:deploy": "yarn workspace @opintents/shared deploy:contracts",
"shared:build": "yarn workspace @opintents/shared build"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@types/node": "20.5.3",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"moker": "1.3.9",
"prettier": "3.0.2",
"typescript": "5.1.6"
},
"packageManager": "[email protected]",
"moker": {
"plugins": [
"prettier",
"lint-staged",
"husky",
"typescript"
],
"scoped": true
}
}