insomnia/package.json

162 lines
5.6 KiB
JSON
Raw Normal View History

2016-03-16 05:49:42 +00:00
{
"name": "insomnia",
2016-03-20 20:42:27 +00:00
"private": true,
2016-07-07 20:10:55 +00:00
"version": "1.0.0",
2016-03-16 05:49:42 +00:00
"description": "Insomnia App",
2016-04-15 16:50:29 +00:00
"main": "electron.js",
2016-07-27 17:25:03 +00:00
"licence": "GNU AGPLv3",
"homepage": "http://insomnia.rest",
2016-03-16 05:49:42 +00:00
"repository": {
"type": "git",
2016-07-18 19:44:46 +00:00
"url": "https://github.com/gschier/insomnia"
},
"scripts": {
2016-11-10 02:53:06 +00:00
"test:noisy": "jest",
2016-11-10 09:00:29 +00:00
"test:coverage": "jest --coverage --silent && open ./coverage/lcov-report/index.html",
"test:watch": "jest --silent --watch",
2016-09-22 23:18:46 +00:00
"test": "jest --silent",
2016-11-10 02:53:06 +00:00
"start-hot": "cross-env HOT=1 INSOMNIA_ENV=development electron -r babel-register ./app/main.development.js",
2016-08-23 18:54:22 +00:00
"hot-server": "babel-node ./webpack/server.js",
2016-07-18 19:44:46 +00:00
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"",
"build:clean": "rm -rf ./build && rm -rf ./dist && mkdir ./build",
"build:renderer": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.config.production.babel.js",
"build:main": "cross-env NODE_ENV=production webpack --config ./webpack/webpack.config.electron.babel.js",
"build:copy": "cp -r ./app/package.json ./app/static ./build/",
"build:install": "cd build && npm install",
"build": "npm run build:clean && npm run build:renderer && npm run build:main && npm run build:copy && npm run build:install",
"package:mac": "rm -rf dist/mac && node node_modules/electron-builder/out/build-cli.js --publish=never --x64 --mac",
"package:win": "rm -rf dist/win* && node node_modules/electron-builder/out/build-cli.js --publish=never --x64 --win",
"package:linux": "rm -rf dist/linux && rm -f dist/*.AppImage && rm -f dist/*.deb && node node_modules/electron-builder/out/build-cli.js --publish=never --x64 --linux",
"package": "npm test && rm -rf dist && npm run package:mac && npm run package:win && npm run package:linux",
2016-08-23 19:49:00 +00:00
"build-n-package": "npm run build && npm run package",
2016-11-19 03:21:15 +00:00
"build-n-package:win": "npm run build && npm run package:win",
"build-n-package:mac": "npm run build && npm run package:mac",
"build-n-package:linux": "npm run build && npm run package:linux",
"sentry": "bash scripts/sentry-release.sh"
2016-07-18 19:44:46 +00:00
},
2016-09-04 21:32:36 +00:00
"jest": {
"rootDir": "app",
2016-11-10 07:34:26 +00:00
"verbose": false,
2016-11-10 09:00:29 +00:00
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.js",
"!**/main.development.js",
"!**/static/**",
"!**/ui/**",
"!**/__fixtures__/**",
"!**/__tests__/**",
"!**/__mocks__/**",
"!**/node_modules/**"
]
2016-09-04 21:32:36 +00:00
},
2016-07-18 19:44:46 +00:00
"build": {
"appId": "com.insomnia.app",
2016-09-02 19:11:05 +00:00
"category": "public.app-category.developer-tools",
2016-07-18 20:10:18 +00:00
"compression": "normal",
"mac": {
2016-11-18 00:33:03 +00:00
"icon": "build/static/icon.icns"
},
2016-07-18 19:44:46 +00:00
"win": {
2016-10-27 01:29:25 +00:00
"iconUrl": "https://insomnia.rest/images/icon.png",
"icon": "build/static/icon.ico",
"loadingGif": "build/static/install-spinner.gif",
2016-11-19 03:21:15 +00:00
"__remoteReleases": "https://s3.amazonaws.com/downloads.insomnia.rest/win",
2016-11-18 00:33:03 +00:00
"target": "squirrel",
2016-09-02 19:11:05 +00:00
"msi": false
2016-07-27 17:25:03 +00:00
},
"linux": {
"synopsis": "A simple, beautiful, and free REST API client",
"category": "Development",
2016-07-27 17:25:03 +00:00
"target": [
"AppImage",
"deb"
]
2016-07-18 19:44:46 +00:00
}
},
"directories": {
2016-07-18 20:10:18 +00:00
"app": "build",
"output": "dist"
2016-03-16 05:49:42 +00:00
},
"dependencies": {
"analytics-node": "^2.1.0",
2016-03-16 05:49:42 +00:00
"classnames": "^2.2.3",
2016-09-13 17:29:09 +00:00
"codemirror": "^5.18.2",
2016-08-25 19:44:51 +00:00
"electron-context-menu": "^0.4.0",
2016-10-27 03:41:30 +00:00
"electron-cookies": "^1.1.0",
"electron-squirrel-startup": "^1.0.0",
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
"hkdf": "0.0.2",
2016-10-11 17:51:11 +00:00
"httpsnippet": "git@github.com:getinsomnia/httpsnippet.git#a3a2c0a0167fa844bf92df52a1442fa1d68a9053",
2016-11-20 06:41:23 +00:00
"insomnia-importers": "^0.3.1",
2016-06-18 22:57:23 +00:00
"json-lint": "^0.1.0",
2016-09-08 22:33:03 +00:00
"jsonpath-plus": "^0.15.0",
2016-10-28 17:51:08 +00:00
"mime-types": "^2.1.12",
2016-10-27 03:41:30 +00:00
"mkdirp": "^0.5.1",
"mousetrap": "^1.6.0",
"nedb": "^1.8.0",
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
"node-forge": "^0.6.43",
"nunjucks": "^3.0.0",
2016-08-17 22:44:03 +00:00
"raven": "^0.12.1",
2016-09-02 19:11:05 +00:00
"react": "^15.3.1",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
2016-06-20 06:14:51 +00:00
"react-dom": "^15.1.0",
2016-03-16 20:02:47 +00:00
"react-redux": "^4.4.1",
2016-07-29 20:37:23 +00:00
"react-tabs": "^0.7.0",
2016-03-16 05:49:42 +00:00
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1",
"request": "^2.74.0",
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
"sjcl": "^1.0.6",
2016-11-01 17:50:31 +00:00
"srp": "git@github.com:getinsomnia/srp-js.git#6ebd8c3acfbcf69645e4c6e6f8f6b55138ff22c3",
"tough-cookie": "^2.3.1",
2016-09-10 01:51:49 +00:00
"traverse": "^0.6.6",
2016-11-19 03:21:15 +00:00
"uuid": "^3.0.0",
2016-09-13 21:18:22 +00:00
"vkbeautify": "^0.99.1",
"xmldom": "^0.1.22",
"xpath": "^0.0.23"
2016-03-16 05:49:42 +00:00
},
"devDependencies": {
2016-08-23 18:54:22 +00:00
"babel-cli": "^6.11.4",
2016-03-16 05:49:42 +00:00
"babel-core": "^6.7.2",
"babel-jest": "^15.0.0",
2016-03-16 05:49:42 +00:00
"babel-loader": "^6.2.4",
2016-07-29 20:37:23 +00:00
"babel-plugin-add-module-exports": "^0.2.1",
2016-04-03 22:54:39 +00:00
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-regenerator": "^6.16.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
2016-03-16 05:49:42 +00:00
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-runtime": "^6.11.6",
2016-03-22 18:20:05 +00:00
"concurrently": "^2.0.0",
2016-08-23 18:54:22 +00:00
"cross-env": "^2.0.0",
2016-03-16 05:49:42 +00:00
"css-loader": "^0.23.1",
2016-11-18 00:33:03 +00:00
"electron": "^1.4.7",
"electron-builder": "^8.6.0",
"electron-devtools-installer": "^2.0.1",
2016-09-17 05:46:44 +00:00
"express": "^4.14.0",
2016-07-29 20:37:23 +00:00
"file-loader": "^0.9.0",
2016-11-10 07:34:26 +00:00
"jest": "^17.0.0",
2016-04-16 23:24:57 +00:00
"json-loader": "^0.5.4",
2016-08-29 17:58:59 +00:00
"less": "^2.7.1",
"less-loader": "^2.2.3",
2016-09-08 20:07:19 +00:00
"nock": "^8.0.0",
"react-addons-perf": "^15.3.0",
2016-06-20 06:14:51 +00:00
"react-addons-test-utils": "^15.1.0",
2016-03-16 05:49:42 +00:00
"react-hot-loader": "^1.3.0",
2016-03-20 20:42:27 +00:00
"redux-mock-store": "^1.0.2",
2016-03-16 05:49:42 +00:00
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
2016-09-17 05:46:44 +00:00
"webpack-dev-middleware": "1.7.0",
2016-03-22 18:20:05 +00:00
"webpack-dev-server": "^1.14.1",
2016-08-17 18:05:52 +00:00
"webpack-hot-middleware": "^2.10.0",
"webpack-target-electron-renderer": "^0.4.0"
2016-04-20 06:09:46 +00:00
},
"devEngines": {
2016-09-17 05:46:44 +00:00
"node": "6.x",
"npm": "2.x || 3.x"
2016-03-16 05:49:42 +00:00
}
}