forked from FarmBot/Farmbot-Web-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"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",
"test-very-slow": "node --expose-gc ./node_modules/.bin/jest -i --colors --coverage",
"test-slow": "./node_modules/.bin/jest -w 6 --colors",
"test": "./node_modules/.bin/jest -w 5 --no-coverage",
"typecheck": "./node_modules/typescript/bin/tsc --noEmit",
"eslint": "./node_modules/.bin/eslint frontend --ext .ts,.tsx",
"sass-lint": "./node_modules/sass-lint/bin/sass-lint.js -c .sass-lint.yml -v -q",
"sass-check": "./node_modules/sass/sass.js --no-source-map frontend/css/_index.scss:sass_index.log frontend/css/laptop_splash.scss:sass_splash.log",
"translation-check": " ./node_modules/jshint/bin/jshint --config public/app-resources/languages/.config public/app-resources/languages/*.js*",
"linters": "npm run typecheck;X=$(($X+$?));npm run eslint;X=$(($X+$?));npm run sass-lint;X=$(($X+$?));npm run sass-check;X=$(($X+$?));npm run translation-check;X=$(($X+$?));[ $X = 0 ]"
},
"keywords": [
"farmbot"
],
"author": "farmbot.io",
"license": "MIT",
"dependencies": {
"@blueprintjs/core": "3.51.0",
"@blueprintjs/popover2": "0.12.5",
"@blueprintjs/select": "3.18.7",
"@monaco-editor/react": "4.3.1",
"@parcel/transformer-sass": "2.0.0",
"@parcel/transformer-typescript-tsc": "2.0.0",
"@types/lodash": "4.14.175",
"@types/markdown-it": "12.2.3",
"@types/node": "16.10.5",
"@types/promise-timeout": "1.3.0",
"@types/react": "17.0.29",
"@types/react-color": "3.0.5",
"@types/react-dom": "17.0.9",
"@types/react-redux": "7.1.19",
"@types/ws": "8.2.0",
"axios": "0.23.0",
"bowser": "2.11.0",
"boxed_value": "1.0.0",
"browser-speech": "1.1.1",
"farmbot": "14.4.0",
"i18next": "21.3.0",
"lodash": "4.17.21",
"markdown-it": "12.2.0",
"markdown-it-emoji": "2.0.0",
"moment": "2.29.1",
"monaco-editor": "0.29.1",
"mqtt": "4.2.8",
"npm": "8.0.0",
"parcel": "2.0.0",
"promise-timeout": "1.3.0",
"react": "16.13.1",
"react-color": "2.19.3",
"react-dom": "16.13.1",
"react-redux": "7.2.5",
"redux": "4.1.1",
"redux-immutable-state-invariant": "2.1.0",
"redux-thunk": "2.3.0",
"takeme": "0.12.0",
"typescript": "4.4.4",
"xterm": "4.14.1"
},
"devDependencies": {
"@types/enzyme": "3.10.9",
"@types/jest": "27.0.2",
"@types/moxios": "0.4.12",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"coveralls": "3.1.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "8.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.0.5",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "27.2.5",
"jest-cli": "27.2.5",
"jest-junit": "13.0.0",
"jest-skipped-reporter": "0.0.5",
"jshint": "2.13.1",
"madge": "5.0.1",
"moxios": "0.4.0",
"raf": "3.4.1",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.13.1",
"sass": "1.42.1",
"sass-lint": "1.13.1",
"ts-jest": "27.0.5",
"tslint": "6.1.3",
"which": "2.0.2"
}
}