123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- {
- "name": "misago-admin",
- "version": "0.1.0",
- "description": "Admin panel UI kit",
- "main": "./misago/admin/src/index.js",
- "scripts": {
- "watch": "NODE_ENV=development webpack -d -w",
- "build": "NODE_ENV=production webpack -p",
- "prettier": "prettier --write misago/admin/src/**/*.js",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/rafalp/misago.git"
- },
- "author": "Rafał Pitoń",
- "license": "SEE LICENSE IN LICENSE.rst",
- "bugs": {
- "url": "https://github.com/rafalp/misago/issues"
- },
- "homepage": "https://github.com/rafalp/misago#readme",
- "dependencies": {
- "@babel/polyfill": "^7.2.5",
- "apexcharts": "^3.6.10",
- "apollo-boost": "^0.3.1",
- "bootstrap": "^4.3.1",
- "graphql": "^14.2.1",
- "jquery": "^3.4.0",
- "moment": "^2.24.0",
- "popper.js": "^1.14.7",
- "react": "^16.8.6",
- "react-apexcharts": "^1.3.3",
- "react-apollo": "^2.5.5",
- "react-dom": "^16.8.6"
- },
- "devDependencies": {
- "@babel/cli": "^7.2.3",
- "@babel/core": "^7.3.4",
- "@babel/plugin-proposal-export-default-from": "^7.2.0",
- "@babel/preset-env": "^7.3.4",
- "autoprefixer": "^9.4.7",
- "babel-eslint": "^9.0.0",
- "babel-loader": "^8.0.5",
- "babel-preset-react-app": "^8.0.0",
- "css-loader": "^2.1.0",
- "eslint": "^5.16.0",
- "eslint-config-react-app": "^4.0.0",
- "eslint-loader": "^2.1.2",
- "eslint-plugin-flowtype": "^2.50.3",
- "eslint-plugin-import": "^2.17.2",
- "eslint-plugin-jsx-a11y": "^6.2.1",
- "eslint-plugin-react": "^7.12.4",
- "eslint-plugin-react-hooks": "^1.5.0",
- "mini-css-extract-plugin": "^0.5.0",
- "node-sass": "^4.12.0",
- "postcss-loader": "^3.0.0",
- "prettier": "1.17.0",
- "sass-loader": "^7.1.0",
- "stylelint": "^9.10.1",
- "stylelint-config-twbs-bootstrap": "^0.3.0",
- "stylelint-webpack-plugin": "^0.10.5",
- "webpack": "^4.29.4",
- "webpack-cli": "^3.2.3"
- },
- "browserslist": [
- ">= 1%",
- "last 1 major version",
- "not dead",
- "Chrome >= 45",
- "Firefox >= 38",
- "Edge >= 12",
- "Explorer >= 10",
- "iOS >= 9",
- "Safari >= 9",
- "Android >= 4.4",
- "Opera >= 30"
- ],
- "babel": {
- "presets": [
- [
- "@babel/env",
- {
- "targets": {
- "edge": "17",
- "firefox": "60",
- "chrome": "67",
- "safari": "11.1"
- },
- "useBuiltIns": "usage"
- }
- ],
- "react-app"
- ],
- "plugins": [
- "@babel/plugin-transform-arrow-functions",
- "@babel/plugin-proposal-export-default-from"
- ]
- },
- "prettier": {
- "semi": false
- }
- }
|