-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.65 KB
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
{
"name": "@lace/core",
"version": "0.1.0",
"description": "Core application elements",
"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 core: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": {
"@ant-design/icons": "^4.7.0",
"@lace/common": "0.1.0",
"antd": "^4.17.3",
"axios": "0.21.4",
"axios-cache-adapter": "2.7.3",
"classnames": "^2.3.1",
"i18next": "20.4.0",
"lodash": "4.17.21",
"react": "17.0.2",
"react-copy-to-clipboard": "5.0.4",
"react-dom": "17.0.2",
"react-i18next": "11.11.4",
"react-infinite-scroll-component": "^6.1.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"shx": "^0.3.2",
"typescript": "^4.3.5"
},
"directories": {
"lib": "src",
"test": "test"
},
"peerDependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
]
}