-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.95 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
{
"name": "root",
"version": "6.5.1",
"license": "2-clause BSD license plus a third clause that prohibits redistribution and use for commercial purposes without further permission.",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"workspaces": [
"packages/desktop",
"packages/web"
],
"private": true,
"scripts": {
"lint": "eslint --ext .jsx --ext .js --ext .tsx --ext .ts packages/",
"test:core": "cd packages/core && BABEL_ENV=nodejs mocha --exit",
"test:desktop": "cd packages/desktop && npm test",
"test:web": "cd packages/web && BABEL_ENV=nodejs mocha --exit",
"test": "npm-run-all test:core test:desktop test:web",
"typeCheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/cli": "7.x",
"@babel/core": "7.x",
"@babel/plugin-proposal-class-properties": "7.x",
"@babel/plugin-proposal-optional-chaining": "7.x",
"@babel/preset-env": "7.x",
"@babel/preset-react": "7.x",
"@babel/preset-typescript": "7.x",
"@babel/register": "7.x",
"@testing-library/react": "12.x",
"@types/chai": "4.2.x",
"@types/classnames": "2.2.x",
"@types/debounce-promise": "3.1.x",
"@types/enzyme": "3.10.x",
"@types/jsdom": "16.x",
"@types/lodash": "4.14.x",
"@types/lru-cache": "5.1.x",
"@types/mocha": "9.x",
"@types/react": "17.x",
"@types/react-beautiful-dnd": "13.1.x",
"@types/react-dom": "17.x",
"@types/react-redux": "7.x",
"@types/react-syntax-highlighter": "13.5.x",
"@types/react-window": "1.8.x",
"@types/react-window-infinite-loader": "1.0.x",
"@types/sinon": "10.x",
"@types/string-natural-compare": "3.0.x",
"@typescript-eslint/eslint-plugin": "5.x",
"@typescript-eslint/parser": "5.x",
"chai": "4.2.x",
"css-modules-require-hook": "4.2.x",
"eslint": "8.x",
"eslint-config-prettier": "8.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.x",
"husky": "3.1.0",
"jsdom": "19.x",
"lint-staged": "10.4.x",
"mocha": "9.x",
"mock-raf": "1.0.x",
"npm-run-all": "4.1.x",
"prettier": "2.1.x",
"resize-observer": "1.0.x",
"rimraf": "3.0.x",
"sinon": "12.x",
"typescript": "4.x"
},
"dependencies": {
"@aics/frontend-insights": "0.2.x",
"@aics/redux-utils": "0.6.0",
"@fluentui/react": "8.67.x",
"@tippyjs/react": "4.2.x",
"axios": "0.21.x",
"classnames": "2.2.x",
"cockatiel": "2.0.x",
"debounce-promise": "3.1.x",
"filesize": "5.0.x",
"fuse.js": "3.4.x",
"interactjs": "1.6.x",
"lodash": "4.17.x",
"lru-cache": "5.1.x",
"normalize.css": "8.0.x",
"react": "17.x",
"react-beautiful-dnd": "13.1.x",
"react-dom": "17.x",
"react-redux": "7.x",
"react-syntax-highlighter": "15.3.x",
"react-window": "1.8.x",
"react-window-infinite-loader": "1.0.x",
"redux": "4.0.x",
"redux-logic": "3.x",
"reselect": "4.0.x",
"string-natural-compare": "3.0.x",
"zarrita": "^0.4.0-next.14"
}
}