108 lines
3.5 KiB
JSON
108 lines
3.5 KiB
JSON
{
|
|
"name": "optolith",
|
|
"productName": "Optolith",
|
|
"version": "1.4.3-alpha.0",
|
|
"description": "A generator for heroes for the P&P-RPG 'The Dark Eye'.",
|
|
"author": {
|
|
"name": "Lukas Obermann",
|
|
"email": "support@optolith.app"
|
|
},
|
|
"homepage": "https://github.com/elyukai/optolith-client",
|
|
"license": "MPL-2.0",
|
|
"main": "app/main.js",
|
|
"dependencies": {
|
|
"@glennsl/bs-json": "5.0.2",
|
|
"ajv": "6.12.6",
|
|
"bs-platform": "8.3.2",
|
|
"electron-devtools-installer": "3.1.1",
|
|
"electron-log": "4.2.4",
|
|
"electron-updater": "4.3.1",
|
|
"electron-window-state": "5.0.3",
|
|
"moment": "2.25.3",
|
|
"mousetrap": "1.6.5",
|
|
"react": "16.13.1",
|
|
"react-custom-scrollbars": "4.2.1",
|
|
"react-dom": "16.13.1",
|
|
"react-markdown": "4.3.1",
|
|
"react-portal": "4.2.1",
|
|
"react-redux": "7.2.1",
|
|
"react-textfit": "1.1.0",
|
|
"reason-react": "0.9.1",
|
|
"reductive": "2.0.1",
|
|
"redux": "4.0.5",
|
|
"redux-devtools-extension": "2.13.8",
|
|
"redux-thunk": "2.3.0",
|
|
"remark-breaks": "1.0.5",
|
|
"reselect": "4.0.0",
|
|
"semver": "7.3.2",
|
|
"ssh2-sftp-client": "5.3.1",
|
|
"tslib": "1.11.2",
|
|
"yaml": "1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "11.0.0",
|
|
"@commitlint/config-conventional": "11.0.0",
|
|
"@glennsl/bs-jest": "0.6.0",
|
|
"@types/classnames": "2.2.11",
|
|
"@types/jest": "26.0.15",
|
|
"@types/mousetrap": "1.6.4",
|
|
"@types/node": "14.14.7",
|
|
"@types/react": "16.9.56",
|
|
"@types/react-custom-scrollbars": "4.0.7",
|
|
"@types/react-dom": "16.9.9",
|
|
"@types/react-portal": "4.0.2",
|
|
"@types/react-redux": "7.1.11",
|
|
"@types/semver": "7.3.4",
|
|
"@typescript-eslint/eslint-plugin": "4.7.0",
|
|
"@typescript-eslint/parser": "4.7.0",
|
|
"custom-env": "2.0.1",
|
|
"dotenv": "8.2.0",
|
|
"electron": "10.1.5",
|
|
"electron-builder": "22.9.1",
|
|
"electron-notarize": "0.3.0",
|
|
"eslint": "7.13.0",
|
|
"eslint-plugin-react": "7.21.5",
|
|
"eslint-plugin-react-hooks": "4.2.0",
|
|
"fs-extra": "9.0.1",
|
|
"gentype": "3.38.0",
|
|
"html-webpack-plugin": "4.5.0",
|
|
"husky": "4.3.0",
|
|
"jest": "26.4.2",
|
|
"qusly-core": "2.5.2",
|
|
"sass": "1.29.0",
|
|
"ts-jest": "26.4.4",
|
|
"ts-loader": "8.0.11",
|
|
"typescript": "3.8.3",
|
|
"webpack": "5.4.0",
|
|
"webpack-cli": "4.2.0"
|
|
},
|
|
"scripts": {
|
|
"prerelease:win": "set NODE_ENV=development && node ./deploy/buildInsiderWin.js",
|
|
"prerelease:linux": "NODE_ENV=development node -r dotenv/config ./deploy/buildInsiderLinux.js",
|
|
"prerelease:mac": "NODE_ENV=development node ./deploy/buildInsiderMac.js",
|
|
"stable:win": "set NODE_ENV=production && node ./deploy/buildWin.js",
|
|
"stable:linux": "NODE_ENV=production node ./deploy/buildLinux.js",
|
|
"stable:mac": "NODE_ENV=production node ./deploy/buildMac.js",
|
|
"css:build": "sass --style=compressed src/Main.scss app/main.css",
|
|
"css:watch": "sass --watch --style=compressed src/Main.scss app/main.css",
|
|
"build": "npm run re:build && npm run css:build && npm run js:build",
|
|
"js:build": "webpack --config ./webpack.config.js",
|
|
"js:watch": "webpack -w --config ./webpack.config.js",
|
|
"ts:build": "tsc",
|
|
"ts:watch": "tsc -w",
|
|
"re:build": "bsb -make-world",
|
|
"re:watch": "bsb -make-world -w",
|
|
"re:clean": "bsb -clean-world",
|
|
"lint": "eslint \"src/\" --ext \".ts\" --ext \".tsx\"",
|
|
"start": "electron .",
|
|
"test": "jest",
|
|
"circ": "madge -c ./src"
|
|
},
|
|
"repository": "github:elyukai/optolith-client",
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
}
|
|
}
|