forked from bitfinexcom/ufx-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"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",
"bootstrap": "npm install && lerna bootstrap --no-hoist",
"bootstrap:ignorescripts": "npm install && lerna bootstrap --no-hoist --ignore-scripts",
"bootstrap:dev": "npm install && npm run install:peer && lerna bootstrap --no-hoist --force-local",
"lint": "lerna run lint",
"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",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"enzyme": "^3.11.0",
"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": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.1"
}
}