forked from flyerman/lace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "@lace/common",
"version": "0.1.0",
"description": "Generic application elements common to @lace/cardano and @lace/core",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "yarn build --watch",
"cleanup": "shx rm -rf dist node_modules coverage .rollup.cache src/dist",
"lint": "cd ../.. && yarn common:lint",
"prepack": "yarn build",
"prestart": "yarn build",
"start": "node dist/index.js",
"test": "NODE_ENV=test jest -c ./test/jest.config.js",
"test:coverage": "yarn test --coverage",
"prepare": "ts-patch install -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/lace.git"
},
"author": "IOHK",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/lace/issues"
},
"homepage": "https://github.com/input-output-hk/lace/blob/master/packages/core/README.md",
"dependencies": {
"antd": "^4.17.3",
"classnames": "^2.3.1",
"lodash": "4.17.21",
"qr-code-styling": "1.6.0-rc.1",
"react": "17.0.2",
"react-copy-to-clipboard": "5.0.4",
"react-dom": "17.0.2",
"react-tooltip": "4.2.7"
},
"devDependencies": {
"shx": "^0.3.2",
"typescript": "^4.3.5"
},
"directories": {
"lib": "src",
"test": "test"
},
"peerDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.2.0"
},
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
]
}