-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "ufx-ui-root",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"description": "A UI toolkit to build trading interface",
"author": "Bitfinex",
"license": "Apache-2.0",
"repository": "https://github.com/bitfinexcom/ufx-ui",
"engines": {
"node": ">=10"
},
"scripts": {
"install:peer": "install-peers -f",
"remove:peer": "rm -rf node_modules/react node_modules/react-dom node_modules/react-redux",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"build": "lerna run build",
"build:css": "lerna run build:css",
"test": "lerna run test",
"verify": "npm run lint && npm run build && npm run build:css && npm run test"
},
"devDependencies": {
"@storybook/addon-actions": "^6.2.9",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"enzyme-to-json": "^3.5.0",
"install-peers-cli": "^2.2.0",
"jest": "26.6.0",
"jest-canvas-mock": "^2.3.0",
"jest-enzyme": "^7.1.2",
"lerna": "^4.0.0"
},
"peerDependencies": {
"react": "16.9.0",
"react-dom": "16.9.0",
"react-redux": "^7.2.1"
}
}