-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "alice-ui-common",
"version": "1.0.0",
"description": "Collection of common alice ui utilities",
"license": "MIT",
"main": "dist/esm/index.js",
"type": "module",
"engines": {
"node": ">=14",
"npm": ">=5"
},
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "rollup -c",
"develop": "rollup -c -w",
"prepare": "husky install",
"test": ""
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@commitlint/format": "^17.0.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.3.0-canary-763612647-20240126",
"react-dom": "17.0.2",
"rollup": "^3.2.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-replace": "^2.2.0",
"styled-jsx": "^3.2.1",
"typescript": "^4.8.4"
},
"files": [
"dist"
],
"dependencies": {
"eth-adapter": "1.0.7"
}
}