forked from Developer-DAO/web3-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.32 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
{
"name": "@web3-ui/root",
"license": "MIT",
"version": "0.0.0",
"private": true,
"author": "Developer DAO",
"workspaces": [
"docs",
"packages/*",
"examples/*"
],
"scripts": {
"prepare": "husky install",
"format": "prettier --write",
"build": "preconstruct build",
"lint": "eslint packages/**/src/ --ext .ts,.tsx --config .eslintrc",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "jest --coverage --colors",
"storybook": "start-storybook -p 9001 -s ./packages/components/src/assets -c .storybook",
"postinstall": "preconstruct dev",
"build-storybook": "build-storybook",
"chromatic": "chromatic --exit-zero-on-changes",
"publish:npm": "yarn build && yarn changeset publish",
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build",
"docs:serve": "yarn workspace docs start"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.18.1",
"@preconstruct/cli": "^2.1.5",
"@storybook/addon-actions": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/addon-links": "^6.4.0",
"@storybook/react": "^6.4.0",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@types/jest": "^26.0.15",
"@types/node": "^16.11.9",
"@types/react": "^17.0.36",
"@types/react-dom": "^16.9.10",
"chromatic": "^6.1.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^12.1.3",
"msw": "^0.35.0",
"prettier": "^2.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.0",
"whatwg-fetch": "^3.6.2"
},
"lint-staged": {
"*.{ts,tsx,md,json}": [
"prettier --write"
]
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}