-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.82 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": "root",
"private": true,
"scripts": {
"docs:dev": "yarn workspace docs run docs:dev",
"docs:build": "yarn workspace docs run docs:build",
"docs:install": "cd docs && yarn install --focus",
"docs:deploy": "yarn run docs:install && yarn run docs:build",
"build": "lerna run build --scope=ovee.js && lerna run build --scope=\"@ovee.js/*\"",
"bootstrap": "lerna bootstrap",
"lerna:publish": "lerna publish from-package",
"test": "node -v && npm run test:unit",
"test:unit": "NODE_ENV=test jest",
"test:unit:watch": "NODE_ENV=test jest --watch --coverage --coverage-reporters=lcov",
"lint": "eslint ./packages --fix",
"lint:no-fix": "eslint ./packages",
"prepublishOnly": "npm run lint:no-fix",
"init-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^27.3.1",
"conventional-changelog-cli": "^2.1.1",
"esbuild": "^0.15.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-lit": "^1.5.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.1.0",
"lerna": "^4.0.0",
"prettier": "^2.3.2",
"rollup": "^2.60.0",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-typescript-paths": "^1.4.0",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.2.0"
},
"workspaces": [
"packages/*",
"docs"
]
}