BoostNote-App/package.json

152 lines
4.8 KiB
JSON
Raw Normal View History

2016-11-19 17:36:28 +03:00
{
"name": "boost",
"productName": "Boost",
2016-11-19 17:36:28 +03:00
"version": "0.1.0",
2016-11-30 23:56:59 +03:00
"description": "A Polished Notes App with Github Flavored Markdown",
2016-12-26 03:18:04 +03:00
"main": "app/index.js",
"repository": {
2017-06-09 19:55:56 +03:00
"type": "git",
2018-11-15 09:44:09 +03:00
"url": "https://github.com/BoostIO/boost.git"
},
2016-11-19 17:36:28 +03:00
"scripts": {
2019-10-11 11:42:29 +03:00
"start": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack-dev-server --mode development --open-page \"app\"",
2016-12-26 03:18:04 +03:00
"start-dev": "NODE_ENV=development electron app/index.js",
2017-01-03 06:10:56 +03:00
"compile": "NODE_ENV=production webpack --config webpack.config.js --progress",
"analyze": "NODE_ENV=production webpack --config webpack.config.js --json | webpack-bundle-size-analyzer",
2016-12-26 03:18:04 +03:00
"pack": "env-cmd ./.env build --dir",
"dist": "env-cmd ./.env build",
"shasum": "shasum -a 256 dist/mac/Inpad-$npm_package_version.dmg",
2019-09-10 06:04:06 +03:00
"lint": "eslint src/**/*.ts{,x}",
2018-11-14 07:39:40 +03:00
"format": "prettier --write \"src/**/*\"",
2019-09-20 13:00:40 +03:00
"build": "cross-env TS_NODE_PROJECT=\"tsconfig-webpack.json\" webpack --mode production",
2018-07-13 22:53:47 +03:00
"test": "jest -c jest.json",
"test:watch": "jest -c jest.json --watch",
2018-10-12 21:52:00 +03:00
"tsc": "tsc --watch --noEmit",
2016-11-19 17:36:28 +03:00
"rebuild": "electron-rebuild"
},
"keywords": [
"markdown",
"snippet",
2016-11-30 23:56:59 +03:00
"notes",
"gfm"
2016-11-19 17:36:28 +03:00
],
2018-10-30 18:05:06 +03:00
"author": "Junyoung Choi <fluke8259@gmail.com>",
2016-11-19 17:36:28 +03:00
"license": "MIT",
"devDependencies": {
2019-09-09 04:48:12 +03:00
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
2019-09-07 18:58:49 +03:00
"@testing-library/react-hooks": "^2.0.1",
2019-09-18 11:36:21 +03:00
"@types/codemirror": "0.0.77",
2019-09-23 12:00:24 +03:00
"@types/filenamify": "^2.0.2",
"@types/html-webpack-plugin": "^3.2.1",
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.138",
2019-09-18 05:25:34 +03:00
"@types/node": "^12.7.5",
2019-09-23 12:00:24 +03:00
"@types/prettier": "^1.18.2",
"@types/ramda": "^0.25.51",
2019-08-27 04:07:45 +03:00
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
2018-11-06 10:27:04 +03:00
"@types/react-hot-loader": "^4.1.0",
2019-09-12 18:36:15 +03:00
"@types/shortid": "0.0.29",
2019-09-23 12:00:24 +03:00
"@types/styled-components": "^4.1.19",
"@types/webpack": "^4.39.1",
"@types/webpack-dev-server": "^3.1.7",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
2019-09-09 04:48:12 +03:00
"babel-jest": "^24.9.0",
2019-09-18 05:25:34 +03:00
"cross-env": "^6.0.0",
2019-09-18 11:36:21 +03:00
"css-loader": "^3.2.0",
"error-overlay-webpack-plugin": "^0.4.1",
2019-09-23 12:00:24 +03:00
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
2019-09-10 06:04:06 +03:00
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
2018-11-06 10:27:04 +03:00
"html-webpack-plugin": "^3.2.0",
2019-08-26 11:27:15 +03:00
"jest": "^24.9.0",
2019-09-23 12:00:24 +03:00
"json-loader": "^0.5.7",
"prettier": "^1.18.2",
"react-hot-loader": "^4.12.13",
2019-09-07 18:58:49 +03:00
"react-test-renderer": "^16.9.0",
2019-09-18 11:36:21 +03:00
"style-loader": "^1.0.0",
"ts-loader": "^6.2.0",
2019-09-18 05:25:34 +03:00
"ts-node": "^8.4.1",
2019-08-27 06:48:08 +03:00
"type-fest": "^0.7.1",
2019-09-18 11:36:21 +03:00
"url-loader": "^2.1.0",
2019-09-23 12:00:24 +03:00
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"dependencies": {
2019-09-16 08:58:39 +03:00
"@mdi/js": "^4.4.95",
"@mdi/react": "^1.2.1",
2019-09-02 12:29:54 +03:00
"@types/pouchdb-adapter-http": "^6.1.3",
"@types/pouchdb-adapter-idb": "^6.1.3",
"@types/pouchdb-adapter-memory": "^6.1.3",
"@types/pouchdb-core": "^7.0.3",
"@types/pouchdb-mapreduce": "^6.1.4",
"@types/pouchdb-replication": "^6.4.2",
2019-11-04 01:38:23 +03:00
"aws-amplify": "^1.2.4",
2019-10-09 05:26:41 +03:00
"classcat": "^4.0.2",
2019-09-23 12:00:24 +03:00
"codemirror": "^5.49.0",
"copy-webpack-plugin": "^5.0.4",
2019-11-04 01:38:23 +03:00
"dotenv": "^8.2.0",
2018-07-16 12:15:52 +03:00
"filenamify": "^2.1.0",
2019-09-23 12:00:24 +03:00
"hast-util-sanitize": "^2.0.1",
"hast-util-to-text": "^1.0.1",
"hastscript": "^5.1.0",
2019-11-03 16:14:32 +03:00
"i18next": "^19.0.0",
2019-09-23 12:00:24 +03:00
"immer": "^3.3.0",
"lodash": "^4.17.15",
2019-09-23 12:00:24 +03:00
"ltstrg": "^1.0.1",
"mdast-util-to-string": "^1.0.6",
2019-08-29 07:46:14 +03:00
"ow": "^0.13.2",
2018-11-22 10:04:42 +03:00
"path-to-regexp": "^2.4.0",
2019-09-23 12:00:24 +03:00
"pouchdb-adapter-http": "^7.1.1",
"pouchdb-adapter-idb": "^7.1.1",
"pouchdb-adapter-memory": "^7.1.1",
"pouchdb-core": "^7.1.1",
2019-08-30 10:01:01 +03:00
"pouchdb-find": "^7.1.1",
2019-09-23 12:00:24 +03:00
"pouchdb-mapreduce": "^7.1.1",
"pouchdb-replication": "^7.1.1",
"ramda": "^0.26.1",
2019-08-27 04:07:45 +03:00
"react": "^16.9.0",
"react-dom": "^16.9.0",
2019-11-03 16:14:32 +03:00
"react-i18next": "^11.0.1",
2019-11-01 07:30:45 +03:00
"react-use": "^12.10.0",
2019-09-23 12:00:24 +03:00
"rehype-raw": "^4.0.1",
"rehype-react": "^4.0.1",
"rehype-sanitize": "^3.0.0",
"remark-frontmatter": "^1.3.2",
"remark-parse": "^7.0.1",
"remark-rehype": "^5.0.0",
2019-09-12 18:36:15 +03:00
"shortid": "^2.2.15",
2019-08-27 04:12:22 +03:00
"styled-components": "^4.3.2",
2019-09-23 12:00:24 +03:00
"typescript": "^3.6.3",
"unified": "^8.4.0",
"unist-util-visit": "^2.0.0",
"use-force-update": "^1.0.7"
2016-12-26 03:18:04 +03:00
},
"build": {
"appId": "com.electron.Boost",
"copyright": "Copyright © 2016-2017 BoostIO",
2016-12-26 03:18:04 +03:00
"category": "public.app-category.productivity",
"files": [
"app",
"compiled",
"resources",
"node_modules"
],
2017-01-03 06:10:56 +03:00
"asar": true,
2016-12-26 03:18:04 +03:00
"mac": {
"category": "public.app-category.productivity",
"target": "dmg",
2016-12-26 03:18:04 +03:00
"icon": "resources/icon.icns"
}
2016-11-19 17:36:28 +03:00
}
}