-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "@ecomplus/store",
"private": true,
"type": "module",
"description": "E-Com Plus Cloud Commerce starter store",
"scripts": {
"dev": "cloudcommerce",
"logs": "cloudcommerce logs",
"serve": "cloudcommerce serve",
"shell": "cloudcommerce shell",
"start": "cloudcommerce start",
"build": "cloudcommerce build",
"predeploy": "cloudcommerce predeploy",
"deploy": "cloudcommerce deploy",
"login": "cloudcommerce login",
"setup": "bash scripts/install.sh && cloudcommerce setup",
"setup:quiet": "cloudcommerce setup --no-deploy --no-commit",
"prepare": "husky"
},
"lint-staged": {
"functions/ssr/**/*.{ts,vue,astro}": "eslint -c ./functions/ssr/.staged.eslintrc.cjs --fix",
"functions/!(ssr)/**/*.ts": "eslint --fix"
},
"main": "functions/index.js",
"bugs": {
"url": "https://github.com/ecomplus/cloud-commerce/issues"
},
"dependencies": {
"@cloudcommerce/cli": "^2.36.14"
},
"devDependencies": {
"@cloudcommerce/eslint": "^2.36.14",
"husky": "^9.1.7",
"lint-staged": "^15.3.0"
}
}