forked from ecomplus/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.71 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
83
84
{
"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",
"release": "GH_TOKEN=$(grep GH_TOKEN .env | cut -d '=' -f2) lerna version && lerna publish from-git",
"docs:dev": "vuepress dev",
"docs:build": "vuepress build"
},
"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.10.2",
"@babel/preset-env": "^7.10.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ecomplus/storefront-snapshot": "^1.2.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@vue/cli-plugin-babel": "^4.4.4",
"@vue/cli-plugin-eslint": "^4.4.4",
"@vue/cli-plugin-router": "^4.4.4",
"@vue/cli-plugin-vuex": "^4.4.4",
"@vue/cli-service": "^4.4.4",
"@vue/eslint-config-standard": "^5.1.2",
"animate.css": "^3.7.2",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"browser-sync": "^2.26.7",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"eslint": "^7.2.0",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.1",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jquery": "3.5.1",
"lerna": "^3.22.1",
"lint-staged": "^10.2.10",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"popper.js": "^1.16.1",
"postcss-loader": "^3.0.0",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"standard": "^14.3.4",
"vue-loader": "^15.9.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.5.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard": {
"parser": "babel-eslint"
}
}