-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "nanopub-js",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "nx run-many --target=dev",
"build": "nx run-many --target=build",
"test": "nx run-many --target=test",
"fmt": "prettier \"**/*.{ts,tsx,js,cjs,json,md,html}\" --ignore-path .gitignore --write",
"lint": "nx run-many --target=lint",
"docs": "yarn docs:build && vite ./docs-dist --base /nanopub-display/",
"docs:build": "rimraf docs-dist && yarn build && typedoc && bash ./docs/fix_docs.sh",
"reset": "nx reset"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.6.3",
"@knodes/typedoc-plugin-pages": "^0.23.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-custom": "*",
"nx": "15.8.6",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typedoc": "^0.23.26",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"workspaces": [
"nanopub-display",
"nanopub-utils",
"eslint-config-custom"
],
"engines": {
"node": ">=14.0.0"
},
"packageManager": "yarn@3.4.1",
"prettier": {
"trailingComma": "none",
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": false,
"arrowParens": "avoid",
"useTabs": false,
"printWidth": 120,
"pluginSearchDirs": [
"."
]
}
}