-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
77 lines (77 loc) · 2.66 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
{
"name": "@ecomplus/storefront",
"version": "2.0.0-monorepo",
"description": "Where Storefront magic happens",
"private": true,
"author": "E-Com Club <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"postinstall": "lerna bootstrap --hoist && npm run startup",
"startup": "node ./scripts/setup.js && npx lerna run --scope=@ecomplus/storefront-twbs build",
"run:main": "lerna run --scope=@ecomplus/storefront-template --stream",
"serve": "cross-env MONOREPO_SERVER=true npm run run:main -- serve",
"build": "npm run run:main -- build",
"build:demo": "npm run run:main -- build:site",
"preversion": "lerna run build --since",
"version": "GH_TOKEN=$(grep GH_TOKEN .env | cut -d '=' -f2) lerna version",
"release": "npm run version && lerna publish from-git && npm run release:starter",
"release:starter": "node ./scripts/release-starter.js",
"release:all": "npm run version -- --force-publish && lerna publish from-git",
"docs:dev": "vuepress dev",
"docs:build": "vuepress build",
"themes:build": "node ./scripts/build-themes.js"
},
"engines": {
"node": "14",
"npm": "^6.14.18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomplus/storefront.git"
},
"bugs": {
"url": "https://github.com/ecomplus/storefront/issues"
},
"homepage": "https://github.com/ecomplus/storefront#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@ecomplus/storefront-snapshot": "^1.2.0",
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-router": "^4.5.19",
"@vue/cli-plugin-vuex": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"animate.css": "^3.7.2",
"babel-loader": "^8.4.1",
"bootstrap": "^4.6.2",
"browser-sync": "^3.0.3",
"caniuse-lite": "^1.0.30001677",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.9",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^8.0.3",
"jquery": "3.7.1",
"lerna": "^5.6.2",
"lint-staged": "^13.3.0",
"markdown-it": "^14.1.0",
"mini-css-extract-plugin": "^0.12.0",
"popper.js": "^1.16.1",
"standard": "^17.1.2",
"vue-server-renderer": "^2.7.16",
"vue-style-loader": "^4.1.3",
"vuepress": "^1.9.10",
"webpack": "^4.47.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2"
}
}