-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
78 lines (78 loc) · 2.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@vue-storefront/spree",
"private": true,
"license": "MIT",
"engines": {
"node": ">=14.15 < 15.0.0"
},
"scripts": {
"build": "yarn build:api-client && yarn build:composables && yarn build:theme",
"build:api-client": "cd packages/api-client && yarn build",
"build:composables": "cd packages/composables && yarn build",
"build:theme": "cd packages/theme && yarn build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "concurrently \"yarn:dev:*\"",
"dev:api-client": "cd packages/api-client && yarn dev",
"dev:composables": "cd packages/composables && yarn dev",
"dev:theme": "cd packages/theme && yarn dev",
"docs:build": "cd docs && yarn build",
"docs:dev": "cd docs && yarn dev",
"docs:install": "cd docs && yarn",
"lint": "eslint . --ext .ts,.vue",
"prepare": "[ -d '.husky' ] && (husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks) || true",
"publish:api-client": "node ./scripts/publishApi.js",
"publish:composables": "node ./scripts/publishComposable.js",
"start": "cd packages/theme && yarn start",
"test": "yarn test:api-client && yarn test:composables && yarn test:theme",
"test:api-client": "cd packages/api-client && yarn test --passWithNoTests",
"test:composables": "cd packages/composables && yarn test --passWithNoTests",
"test:theme": "cd packages/theme && yarn test --passWithNoTests",
"update:check": "ncu && lerna run update:check --stream",
"update:update": "ncu -u && lerna run update:update --stream"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/config-lerna-scopes": "^13.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^24.0.1",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@vue/eslint-config-typescript": "^7.0.0",
"all-contributors-cli": "^6.20.0",
"commitizen": "^4.2.4",
"concurrently": "^5.3.0",
"eslint": "7.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^7.0.1",
"husky": "^7.0.1",
"jest": "^24.9.0",
"lerna": "^3.15.0",
"lint-staged": "^10.0.7",
"npm-check-updates": "^11.8.3",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"shx": "^0.3.3",
"ts-jest": "^27.0.7",
"ts-node": "^8.4.1",
"tslib": "^2.3.0",
"typescript": "^4.4.4",
"vue-eslint-parser": "^7.0.0",
"vue-jest": "^4.0.0-0"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"dotenv": "^16.0.3"
}
}