forked from ecomplus/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.74 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
79
80
81
82
{
"name": "@ecomplus/storefront",
"version": "2.0.0-monorepo",
"description": "Where Storefront magic happens",
"private": true,
"author": "E-Com Club <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap --hoist && npm run startup",
"startup": "node ./setup.js && lerna run --scope=@ecomplus/storefront-twbs build",
"run:main": "lerna run --scope=@ecomplus/storefront-template --stream",
"serve": "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",
"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"
},
"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.14.6",
"@babel/preset-env": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@ecomplus/storefront-snapshot": "^1.2.0",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-plugin-vuex": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"animate.css": "^3.7.2",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"bootstrap": "^4.6.0",
"browser-sync": "^2.26.14",
"caniuse-lite": "^1.0.30001239",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"cssnano": "^4.1.11",
"eslint": "^7.29.0",
"eslint-import-resolver-node": "^0.3.4",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^6.0.0",
"jquery": "3.6.0",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"markdown-it": "^12.0.6",
"mini-css-extract-plugin": "^0.12.0",
"node-sass": "^6.0.0",
"popper.js": "^1.16.1",
"postcss": "^7.0.36",
"postcss-loader": "^4.3.0",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^10.2.0",
"standard": "^16.0.3",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.7",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"vuepress": "^1.8.2",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"standard": {
"parser": "babel-eslint"
}
}