Farmbot-Web-App/package.json

90 lines
2.9 KiB
JSON
Raw Normal View History

2016-09-22 08:02:46 -06:00
{
"name": "farmbot-web-frontend",
"version": "1.1.0",
"description": "Farmbot web frontend.",
"repository": {
"type": "git",
"url": "https://github.com/farmbot/farmbot-web-frontend"
},
"scripts": {
"coverage": "cat **/*lcov.info | ./node_modules/coveralls/bin/coveralls.js",
2020-01-24 10:10:46 -07:00
"test-very-slow": "node --expose-gc ./node_modules/.bin/jest -i --colors --coverage",
2019-07-02 11:05:05 -06:00
"test-slow": "./node_modules/.bin/jest -w 6 --colors",
"test": "./node_modules/.bin/jest -w 5 --no-coverage",
2019-02-06 18:36:11 -07:00
"typecheck": "./node_modules/typescript/bin/tsc --noEmit",
2018-09-13 14:26:53 -06:00
"tslint": "./node_modules/tslint/bin/tslint --project .",
2019-02-06 18:36:11 -07:00
"sass-lint": "./node_modules/sass-lint/bin/sass-lint.js -c .sass-lint.yml -v -q",
2019-02-10 22:10:29 -07:00
"sass-check": "./node_modules/sass/sass.js --no-source-map frontend/css/_index.scss sass.log",
2019-02-28 16:31:42 -07:00
"translation-check": " ./node_modules/jshint/bin/jshint --config public/app-resources/languages/.config public/app-resources/languages/*.js*",
2020-02-20 19:38:50 -07:00
"linters": "npm run typecheck; npm run tslint; npm run sass-lint; npm run sass-check; npm run translation-check"
},
"keywords": [
"farmbot"
],
"author": "farmbot.io",
"license": "MIT",
"dependencies": {
2020-05-06 16:03:15 -06:00
"@babel/core": "7.9.6",
"@blueprintjs/core": "3.26.1",
"@blueprintjs/datetime": "3.17.0",
"@blueprintjs/select": "3.12.3",
2020-02-24 09:55:37 -07:00
"@types/enzyme": "3.10.5",
2020-04-14 16:47:17 -06:00
"@types/jest": "25.2.1",
2020-04-24 09:22:24 -06:00
"@types/lodash": "4.14.150",
2020-04-28 08:18:16 -06:00
"@types/markdown-it": "10.0.1",
2019-09-09 10:09:48 -06:00
"@types/moxios": "0.4.9",
2020-05-06 16:03:15 -06:00
"@types/node": "13.13.5",
2019-01-07 17:06:55 -07:00
"@types/promise-timeout": "1.3.0",
2020-04-14 16:47:17 -06:00
"@types/react": "16.9.34",
2019-06-11 13:51:53 -06:00
"@types/react-color": "3.0.1",
2020-04-28 08:18:16 -06:00
"@types/react-dom": "16.9.7",
2020-01-24 12:46:05 -07:00
"@types/react-redux": "7.1.7",
"axios": "0.19.2",
2019-01-07 17:06:55 -07:00
"boxed_value": "1.0.0",
2018-03-16 15:40:35 -06:00
"browser-speech": "1.1.1",
2020-04-28 08:18:16 -06:00
"coveralls": "3.1.0",
2019-12-27 13:58:44 -07:00
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
2020-05-08 14:27:15 -06:00
"farmbot": "10.0.0-rc2",
2020-04-28 08:18:16 -06:00
"i18next": "19.4.4",
2019-10-13 13:20:53 -06:00
"install": "0.13.0",
2019-07-23 14:57:55 -06:00
"lodash": "4.17.15",
2019-09-11 11:49:54 -06:00
"markdown-it": "10.0.0",
2019-01-07 17:06:55 -07:00
"markdown-it-emoji": "1.4.0",
2020-05-06 16:03:15 -06:00
"moment": "2.25.3",
2019-01-07 17:06:55 -07:00
"moxios": "0.4.0",
2020-05-08 14:27:15 -06:00
"mqtt": "4.0.1",
2020-05-06 16:03:15 -06:00
"npm": "6.14.5",
2019-10-13 13:20:53 -06:00
"parcel-bundler": "1.12.4",
2019-01-07 17:06:55 -07:00
"promise-timeout": "1.3.0",
"raf": "3.4.1",
2020-03-20 10:09:54 -06:00
"react": "16.13.1",
2019-01-07 17:06:55 -07:00
"react-addons-test-utils": "15.6.2",
2020-05-06 16:03:15 -06:00
"react-color": "2.18.1",
2020-03-20 10:09:54 -06:00
"react-dom": "16.13.1",
2019-12-27 13:58:44 -07:00
"react-joyride": "2.2.1",
2020-02-24 09:55:37 -07:00
"react-redux": "7.2.0",
2020-03-20 10:09:54 -06:00
"react-test-renderer": "16.13.1",
2020-05-06 16:03:15 -06:00
"react-transition-group": "4.4.1",
2019-12-27 13:58:44 -07:00
"redux": "4.0.5",
2019-01-07 17:06:55 -07:00
"redux-immutable-state-invariant": "2.1.0",
2018-07-27 10:21:43 -06:00
"redux-thunk": "2.3.0",
2019-05-10 18:50:34 -06:00
"sass-lint": "1.13.1",
2019-08-23 15:19:02 -06:00
"takeme": "0.11.3",
2020-04-24 09:22:24 -06:00
"ts-jest": "25.4.0",
2019-01-07 17:06:55 -07:00
"ts-lint": "4.5.1",
2020-04-28 08:18:16 -06:00
"tslint": "6.1.2",
2020-03-13 15:06:02 -06:00
"typescript": "3.8.3",
2019-11-19 11:49:01 -07:00
"which": "2.0.2"
},
"devDependencies": {
2020-05-06 16:03:15 -06:00
"jest": "25.5.4",
"jest-cli": "25.5.4",
2020-01-24 10:10:46 -07:00
"jest-junit": "10.0.0",
2020-02-04 12:42:40 -07:00
"jest-skipped-reporter": "0.0.5",
2020-01-24 12:46:05 -07:00
"jshint": "2.11.0",
2020-05-08 14:27:15 -06:00
"madge": "3.9.0",
2020-04-24 09:22:24 -06:00
"sass": "1.26.5"
}
}