-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 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
37
38
39
40
41
42
43
44
{
"name": "greenstand-wallet-app",
"version": "0.1.0",
"main": "web/index.js",
"license": "UNLICENSED",
"scripts": {
"shopify": "shopify",
"build": "shopify app build",
"dev": "shopify app dev",
"info": "shopify app info",
"generate": "shopify app generate",
"deploy": "shopify app deploy",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@shopify/app": "^3.57.0",
"@shopify/cli": "3.55.1",
"@shopify/polaris": "^12.26.1",
"@shopify/shopify-api": "^9.7.2",
"@shopify/shopify-app-session-storage": "^2.1.0",
"commitlint": "^18.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"toml-loader": "^1.0.0",
"uuid": "^9.0.1"
},
"author": "krithinpakshootra",
"private": true,
"workspaces": [
"extensions/*",
"web",
"web/frontend"
],
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}