forked from jovotech/jovo-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.65 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
{
"name": "root",
"private": true,
"version": "4.0.0",
"scripts": {
"setup:dev": "npm run bootstrap && npm run build",
"setup:cli": "lerna run setup:cli && npm run setup:dev",
"bootstrap": "lerna bootstrap --hoist --no-ci --nohoist=@babel/* --nohoist=babel-*",
"clean": "lerna clean",
"build": "lerna exec npm run build --ignore @jovotech/examples-* --ignore @jovotech/e2e",
"prettier": "lerna exec npm run prettier --ignore @jovotech/examples-*",
"eslint": "lerna exec npm run eslint --ignore @jovotech/examples-* --ignore @jovotech/e2e",
"rimraf": "lerna exec npm run rimraf --ignore @jovotech/examples-*",
"test": "lerna exec npm run test --ignore @jovotech/examples-*",
"version": "node scripts/update-peer-dependencies.js",
"preparePublish": "npm run bootstrap && npm run prettier && npm run eslint && npm run build && npm run test",
"updateVersions:minor": "lerna version minor --yes --no-push --no-git-tag-version",
"updateVersions:patch": "lerna version patch --yes --no-push --no-git-tag-version",
"publishPackages": "lerna publish from-package --yes --no-verify-access"
},
"author": "jovotech",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"esbuild": "^0.13.8",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^29.2.1",
"lerna": "6.4.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.4",
"ts-toolbelt": "9.5.13",
"typescript": "~4.4.4"
},
"dependencies": {}
}