diff options
author | Anton Dubik <anton.dubik33@gmail.com> | 2020-01-28 22:09:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-28 22:09:49 +0300 |
commit | d246305bfa280221efa8ee31cf6a841fbf54f378 (patch) | |
tree | 2029301838a09c072a8e4caaa3e6dc6e7a0c1a15 /package.json | |
parent | 51326e543f5f7d468d30e46288e91ef98d77a9d8 (diff) | |
parent | 53143dfc36e66e285256706a8ec837e2bd2f8427 (diff) | |
download | react-benzin-d246305bfa280221efa8ee31cf6a841fbf54f378.tar.gz |
Merge pull request #1 from Eug-VS/developv1.0.1
BENZIN Release 1.0.1
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..6fb756f --- /dev/null +++ b/package.json @@ -0,0 +1,48 @@ +{ + "name": "react-benzin", + "version": "1.0.1", + "description": "A powerful React Material components library.", + "main": "dist/index.js", + "module": "dist/index.js", + "files": [ + "dist", + "README.md" + ], + "scripts": { + "start": "react-scripts start", + "test": "eslint .", + "build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files", + "deploy": "npm test && npm run build && npm publish --public" + }, + "license": "MIT", + "dependencies": { + "@material-ui/core": "^4.9.0", + "@material-ui/icons": "^4.5.1", + "react": "^16.12.0", + "react-dom": "^16.12.0", + "react-scripts": "^3.3.0", + "react-virtualized-auto-sizer": "^1.0.2", + "react-window": "^1.8.5", + "typeface-roboto": "0.0.75" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/preset-react": "^7.8.3", + "eslint": "^6.8.0", + "eslint-config-react-app": "^5.1.0", + "typescript": "^3.7.5" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} |