-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "@44north/modules",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:fortyfournorth/modules.git",
"author": "Christopher Vachon <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run --parallel clean",
"release": "lerna run build && lerna publish from-package --yes",
"build": "lerna run build",
"test": "lerna run --parallel test",
"docs": "yarn clean && yarn build && typedoc --entryPointStrategy packages .",
"serve-docs": "yarn docs && http-server ./docs"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-utils": "^3.0.0",
"http-server": "^14.1.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"lerna": "^3.20.2",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typedoc": "^0.22.11",
"typedoc-plugin-extras": "^2.2.3",
"typescript": "^4.4.4"
}
}