forked from vuestorefront/vue-storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
{
"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 && cd ../../packages/nuxt && yarn run prepare"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@changesets/cli": "^2.26.1",
"@types/jest": "^26.0.24",
"@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": "^27.0.6",
"lint-staged": "^13.2.2",
"rimraf": "^5.0.0",
"rollup": "^2.59.0",
"ts-jest": "^27.0.3",
"ts-node": "^8.4.1",
"tslib": "^2.1.0",
"turbo": "^2.0.10-canary.1",
"typescript": "^5",
"webpack-bundle-analyzer": "^3.5.2"
},
"workspaces": {
"packages": [
"packages/*",
"engineering-toolkit/*"
]
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}