This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
112 lines (112 loc) · 3.47 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@synthetixio/ui",
"version": "1.0.0",
"description": "component library",
"repository": "https://github.com/Synthetixio/ui",
"license": "MIT",
"private": false,
"files": [
"dist",
"README.md"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/components/index.d.ts",
"source": "src/components/index.ts",
"scripts": {
"build": "yarn build:package",
"build:css": "sass ./src/styles/_default.scss ./dist/default.css",
"build:package": "yarn clean && yarn build:css && cross-env NODE_ENV=production BABEL_ENV=production rollup -c",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"commit": "cz",
"clean": "rimraf dist"
},
"dependencies": {
"@synthetixio/transaction-notifier": "^2.70.1",
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"react-table": "^7.8.0",
"react-transition-group": "^4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^6.5.0-alpha.3",
"@storybook/addon-essentials": "^6.5.0-alpha.3",
"@storybook/addon-links": "^6.5.0-alpha.3",
"@storybook/builder-webpack5": "^6.5.0-alpha.3",
"@storybook/manager-webpack5": "^6.5.0-alpha.3",
"@storybook/node-logger": "^6.5.0-alpha.3",
"@storybook/preset-create-react-app": "^4.0.0",
"@storybook/react": "^6.5.0-alpha.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-table": "^7.7.12",
"@types/react-transition-group": "^4.4.4",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"autoprefixer": "10.4.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"ethers": "^5.6.7",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.0",
"rollup": "^2.61.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-generate-declarations": "^1.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.45.0",
"semantic-release": "19.0.2",
"storybook-dark-mode": "^1.1.0",
"tailwindcss": "^3.0.3",
"typescript": "^4.7.4",
"web-vitals": "^2.1.2",
"webpack": "5"
},
"optionalDependencies": {
"babel-loader": "8.2.3"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"resolutions": {
"libnpmaccess": "6.0.1",
"@types/react": "17.0.39"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"homepage": "https://synthetixio.github.io/ui"
}