forked from HubSpot/cms-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 883 Bytes
/
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
{
"name": "js-building-blocks-hello-world",
"description": "JS Building Blocks Hello World",
"license": "Apache-2.0",
"devDependencies": {
"@hubspot/cli": "latest",
"@hubspot/prettier-plugin-hubl": "latest",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"yarpm": "^1.2.0"
},
"scripts": {
"start": "cd hello-world-project/hello-world-app && yarpm start",
"postinstall": "cd hello-world-project/hello-world-app && yarpm install",
"lint:js": "eslint . --ext .js,.jsx",
"prettier": "prettier . --check",
"watch:hubl": "hs watch hello-world-theme hello-world-theme",
"upload:hubl": "hs upload hello-world-theme hello-world-theme",
"deploy": "hs project upload hello-world-project"
},
"dependencies": {},
"engines": {
"node": ">=16.0.0"
}
}