Files
andromeda-viewer/package.json
T

159 lines
5.2 KiB
JSON

{
"name": "andromeda-viewer",
"version": "0.0.1",
"description": "Small web-client for connecting to the virtual world of Second Life.",
"private": true,
"scripts": {
"build": "cross-env REACT_APP_COMPILE_DATE=`date -u \"+%Y-%m-%dT%H:%M\"` npm-run-all -s build:style build:app",
"prebuild:app": "npm run build:messages",
"build:app": "react-scripts build",
"build:messages": "node ./tools/createMessageTemplate",
"build:style": "cross-env NODE_ENV=production postcss src/tailwind.css -o src/styles.css",
"dev": "npm-run-all -p dev:*",
"dev-server": "cross-env SERVER=debug npm-run-all -p dev:*",
"predev:app": "npm run build:messages",
"dev:app": "react-scripts start",
"dev:db": "pouchdb-server --config ./config.json",
"dev:style": "postcss src/tailwind.css -o src/styles.css --watch",
"fix:docs": "textlint --fix README.md ./*/*.md ./src/*/*.md",
"fix:style": "standard --fix",
"fix": "npm-run-all -p fix:*",
"type-docs": "typedoc --out docs/types src && open-cli ./docs/types/index.html",
"open-type-docs": "open-cli ./docs/types/index.html",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): update CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): update CONTRIBUTING.md'",
"update-files": "node tools/updateFiles.js",
"test:docs": "textlint README.md ./*/*.md ./src/*/*.md",
"test:standard": "standard",
"test:server": "cross-env PORT=0 NODE_ENV=test mocha",
"pretest:app": "npm run build:messages",
"test:app": "react-scripts test --env=jsdom",
"test": "npm-run-all -s test:standard test:docs test:server test:app",
"test-coverage": "react-scripts test --env=jsdom --coverage && open-cli ./coverage/lcov-report/index.html",
"start-server-dev": "node server/index.js",
"start": "cross-env NODE_ENV=production node server/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Terreii/andromeda-viewer.git"
},
"author": {
"name": "Christopher Astfalk",
"email": "christopher.astfalk@icloud.com",
"url": "http://christopher-astfalk.de/"
},
"license": "Apache-2.0",
"engines": {
"node": ">=12.16.0"
},
"bugs": {
"url": "https://github.com/Terreii/andromeda-viewer/issues"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.4.0",
"@tailwindcss/custom-forms": "^0.2.1",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/jest-axe": "^3.5.1",
"@types/node": "^14.14.3",
"@types/pouchdb-adapter-memory": "^6.1.3",
"@types/pouchdb-browser": "^6.1.3",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.6",
"@types/uuid": "^8.3.0",
"anchorme": "^2.1.2",
"autoprefixer": "^10.0.1",
"autoscroll-react": "^3.2.0",
"cross-env": "^7.0.2",
"double-ended-queue": "^2.1.0-0",
"hoodie-plugin-store-crypto": "^4.1.0",
"http-proxy-middleware": "^1.0.6",
"jest-axe": "^4.0.0",
"jszip": "^3.5.0",
"mocha": "^8.2.0",
"mockdate": "^3.0.2",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"open-cli": "^6.0.1",
"postcss": "^8.1.4",
"postcss-cli": "^8.1.0",
"pouchdb-adapter-memory": "^7.2.2",
"pouchdb-authentication": "^1.1.3",
"pouchdb-browser": "^7.2.2",
"pouchdb-hoodie-api": "^2.0.0",
"pouchdb-server": "^4.2.0",
"proxyquire": "^2.1.3",
"react": "^17.0.1",
"react-burger-menu": "^2.9.0",
"react-dom": "^17.0.1",
"react-portal": "^4.2.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0",
"react-test-renderer": "^17.0.1",
"reakit": "^1.2.5",
"reakit-test-utils": "^0.14.5",
"redux-burger-menu": "^0.2.8",
"redux-mock-store": "^1.5.4",
"requestidlecallback": "^0.3.0",
"reselect": "^4.0.0",
"sinon": "^9.2.0",
"standard": "^16.0.0",
"supertest": "^5.0.0",
"tailwindcss": "^1.9.6",
"textlint": "^11.7.6",
"textlint-rule-alex": "^3.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-rousseau": "^1.4.6",
"typedoc": "^0.19.2",
"typescript": "^4.0.3",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.9",
"web-vitals": "^0.2.4"
},
"dependencies": {
"basic-auth": "^2.0.1",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"http-proxy": "^1.18.1",
"milliseconds": "^1.0.3",
"nano": "^8.2.2",
"node-fetch": "^2.6.1",
"pouchdb-errors": "^7.2.2",
"uuid": "^8.3.1",
"ws": "^7.3.1",
"xmlrpc": "^1.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest",
"es6"
]
}
}