Files
next-static-site/package.json
Brandon Lee Kitajchuk e3cd0edeb6 Initial refactor of jambonz-ui package library (#39)
* Initial refactor of jambonz-ui package library

* Delete public/fonts directory

* Jambonz UI test-app and some refinements

* next lint

* working on jambonz ui docs

* Update package.json

* Update package.json

* Update package.json

* Create package.json

* typescript

* Update components.tsx

* Update components.tsx

* Update utils.ts

* Update icons.ts

* Update components.tsx

* Update components.tsx

* Update icons.ts

* Update components.tsx

* Update _icons.scss

* Update components.tsx

* Update components.tsx

* fix some thangs and compile all

* wrap up the docs

* Update tsconfig.json

* icons refactor

* refine docs

* update readmes

* update readme

* fix props interfaces and test in TS app

* Update components.tsx

* button up some things

* change package name...

* include readme in pkg dist

* use published package
2022-07-01 10:57:32 -07:00

61 lines
1.6 KiB
JSON

{
"name": "jambonz",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"postinstall": "rm -rf public/fonts && cp -R ./node_modules/jambonz-ui/public/fonts ./public/fonts",
"dev": "next",
"lint": "next lint",
"start": "next start",
"build": "next build",
"export": "next export",
"pretest": "node cypress/scripts/fixtures.js",
"test": "cypress run --headless --browser chrome",
"posttest": "rm -rf cypress/fixtures"
},
"contributors": [
{
"name": "Brandon Lee Kitajchuk",
"email": "bk@kitajchuk.com",
"url": "https://www.kitajchuk.com"
}
],
"license": "MIT",
"dependencies": {
"jambonz-ui": "^0.0.2",
"nanoid": "^3.1.22",
"next": "^12.1.4",
"next-plugin-preact": "^3.0.6",
"preact": "^10.7.2",
"preact-render-to-string": "^5.2.0",
"prismjs": "^1.23.0",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-feather": "^2.0.10",
"react-ssr-prepass": "npm:preact-ssr-prepass"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-prismjs": "^2.0.1",
"cypress": "^7.7.0",
"env-cmd": "^10.1.0",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"gray-matter": "^4.0.2",
"husky": "^6.0.0",
"lint-staged": "^12.4.1",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"remark-html": "^13.0.1",
"sass": "^1.32.8",
"sharp": "^0.30.4",
"yamljs": "^0.3.0"
},
"lint-staged": {
"src/**/*.js": "yarn lint",
"pages/**/*.js": "yarn lint"
}
}