-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
111 lines (111 loc) · 3.69 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
{
"name": "pi-ui",
"version": "1.1.0",
"description": "",
"author": "tiagoalvesdulce",
"license": "MIT",
"repository": "decred/pi-ui",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"prettier": "prettier \"src/**/*.(js|jsx|mdx)\"",
"format": "yarn prettier --write",
"test:format": "yarn prettier --check",
"test:ci": "npm run test:format && npm run lint:css && npm run lint:js && cross-env NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
"test:dev": "npm run test:format && npm run lint:css && npm run lint:js && cross-env NODE_OPTIONS=--experimental-vm-modules jest --watchAll --no-cache",
"test": "is-ci \"test:ci\" \"test:dev\"",
"build": "rollup -c --environment NODE_ENV:production",
"start": "rollup -c -w",
"prepare": "yarn run build",
"lint:css": "stylelint 'src/**/*.css'",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js": "eslint --ext .js,.jsx ./src",
"lint:js:fix": "npm run lint:js -- --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@mdx-js/react": "^1.6.22",
"@react-theming/storybook-addon": "^1.1.7",
"@rollup/plugin-url": "^6.1.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.9",
"@svgr/rollup": "^5.5.0",
"@testing-library/react": "^12.1.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^3.9.0",
"fs-copy-file-sync": "^1.1.1",
"gh-pages": "^3.2.3",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^2.2.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.17",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "17.0.2",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-gzip": "2.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-visualizer": "^5.8.3",
"stylelint": "^14.13.0",
"stylelint-config-recommended": "^6.0.0",
"webpack": "^5.74.0"
},
"files": [
"dist"
],
"dependencies": {
"clamp-js-main": "^0.11.5",
"lodash": "^4.17.15",
"prop-types": "^15.8.1",
"react-select": "5.4.0",
"react-select-event": "^5.5.1",
"react-spring": "^9.5.5",
"react-tapper": "^0.1.23"
}
}