-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
package.json
55 lines (55 loc) · 1.63 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
54
55
{
"name": "root",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"lint": "turbo run lint",
"ci": "turbo run build test:unit test:integration lint",
"changesets:version": "yarn changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install && yarn prepare:docs",
"changesets:publish": "yarn build && yarn changeset publish",
"prepare:docs": "cd docs && yarn install && yarn api-extract && yarn add-changelogs",
"postinstall": "cd packages/changesets && yarn build"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@changesets/cli": "^2.26.1",
"@types/jest": "^29.0.3",
"@types/node": "^16",
"@vue-storefront/api-extractor-config": "*",
"@vue-storefront/eslint-config-integrations": "*",
"@vue-storefront/integrations-tsconfig": "*",
"@vue-storefront/jest-config": "*",
"@vue-storefront/rollup-config": "^0.0.6",
"cross-env": "^6.0.3",
"husky": "^8.0.3",
"jest": "^29.0.2",
"lint-staged": "^13.2.2",
"rimraf": "^5.0.0",
"rollup": "^2.59.0",
"ts-jest": "^29.0.2",
"ts-node": "^8.4.1",
"tslib": "^2.1.0",
"turbo": "^2.3.0",
"typescript": "^5"
},
"workspaces": {
"packages": [
"packages/*",
"engineering-toolkit/*"
]
},
"resolutions": {
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}