forked from FarmBot/Farmbot-Web-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.42 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
{
"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.44.1",
"@blueprintjs/select": "3.16.1",
"@monaco-editor/react": "4.1.3",
"@parcel/transformer-sass": "2.0.0-beta.2",
"@parcel/transformer-typescript-tsc": "2.0.0-beta.2",
"@types/lodash": "4.14.168",
"@types/markdown-it": "12.0.1",
"@types/node": "15.0.1",
"@types/promise-timeout": "1.3.0",
"@types/react": "17.0.4",
"@types/react-color": "3.0.4",
"@types/react-dom": "17.0.3",
"@types/react-redux": "7.1.16",
"axios": "0.21.1",
"bowser": "2.11.0",
"boxed_value": "1.0.0",
"browser-speech": "1.1.1",
"farmbot": "14.0.3",
"i18next": "20.2.2",
"lodash": "4.17.21",
"markdown-it": "12.0.6",
"markdown-it-emoji": "2.0.0",
"moment": "2.29.1",
"monaco-editor": "0.23.0",
"mqtt": "4.2.6",
"npm": "7.11.2",
"parcel": "2.0.0-beta.2",
"promise-timeout": "1.3.0",
"react": "16.13.1",
"react-color": "2.19.3",
"react-dom": "16.13.1",
"react-redux": "7.2.4",
"redux": "4.1.0",
"redux-immutable-state-invariant": "2.1.0",
"redux-thunk": "2.3.0",
"takeme": "0.12.0",
"typescript": "4.2.4",
"xterm": "4.11.0"
},
"devDependencies": {
"@types/enzyme": "3.10.8",
"@types/jest": "26.0.23",
"@types/moxios": "0.4.11",
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"coveralls": "3.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.23.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.2",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"jest-junit": "12.0.0",
"jest-skipped-reporter": "0.0.5",
"jshint": "2.12.0",
"madge": "4.0.2",
"moxios": "0.4.0",
"raf": "3.4.1",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.13.1",
"sass": "1.32.8",
"sass-lint": "1.13.1",
"ts-jest": "26.5.4",
"tslint": "6.1.3",
"which": "2.0.2"
}
}