forked from Developer-DAO/web3-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "web3-ui",
"license": "MIT",
"version": "1.0.0",
"private": false,
"engines": {
"node": ">=16.0.0",
"yarn": "^1.5"
},
"description": "React Typescript Library Boilerplate",
"author": "Dhaiwat Pandya",
"homepage": "https://github.com/Developer-DAO/web3-ui/",
"bugs": {
"url": "https://github.com/Developer-DAO/web3-ui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Developer-DAO/web3-ui/"
},
"scripts": {
"build": "yarn clean; rollup -c",
"clean": "rimraf dist",
"dev": "yarn storybook",
"format": "prettier --write \"src/**/*.{ts,tsx,json,js,jsx}\"",
"format:check": "prettier --list-different \"src/**/*.{ts,tsx,json,js,jsx}\"",
"storybook": "start-storybook -p 9001 -s ./src/assets -c .storybook",
"test": "jest --maxWorkers=2",
"test:watch": "yarn test --watch",
"test:coverage": "jest --coverage --colors --maxWorkers=2",
"hygen": "hygen",
"component:new": "hygen component with-prompt",
"prepare": "husky install",
"pre-commit-hook": "yarn lint-staged"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"dependencies": {
"@chakra-ui/react": "^1.7.2",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"classnames": "^2.2.6",
"framer-motion": "^4"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@storybook/react": "^6.3.12",
"@testing-library/react": "^12.1.2",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/node": "^16.11.9",
"@types/react": "^17.0.36",
"@types/react-dom": "^16.9.10",
"babel-loader": "^8.2.1",
"classnames": "^2.2.6",
"husky": "^7.0.0",
"hygen": "^6.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^12.1.2",
"prettier": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"typescript": "^4.1.0",
"webpack": "^4.42.1"
},
"lint-staged": {
"*.{ts,tsx,json,js,jsx}": "yarn format"
}
}