-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 3.12 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
{
"name": "@union/ts-components",
"version": "1.1.21",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"scripts": {
"dev": "yarn build && yarn storybook",
"//build": "yarn tsc && yarn dist",
"build": "rollup -c",
"build:watch": "concurrently \"yarn tsc -w\" \"yarn dist -w\"",
"dist": "NODE_ENV=production rollup -c",
"compile": "tsc -p .",
"declarations": "tsc --emitDeclarationOnly",
"prebuild": "rm -rf dist dist-transpiled",
"prewebpack": "rm -rf dist dist-transpiled",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\"",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet --fix",
"storybook": "start-storybook --port 9001",
"build:storybook": "build-storybook && yarn deploy",
"deploy": "surge --domain playcore-storybook.surge.sh --project ./storybook-static",
"generate": "schematics ./node_modules/@union/react-schematics/src/collection.json:react --debug=false",
"release.prepare": "node scripts/prepare.js"
},
"files": [
"dist/"
],
"dependencies": {
"@styled-system/theme-get": "^5.1.2",
"lodash": "^4.17.20",
"polished": "^3.4.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-modal": "^3.11.2",
"react-range": "^1.8.2",
"styled-components": "^5.2.1",
"styled-flex-component": "^3.0.5",
"styled-system": "^5.1.5",
"tslib": "*"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-alias": "^3.0.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-virtual": "^2.0.3",
"@storybook/addon-a11y": "^6.0.28",
"@storybook/addon-knobs": "^6.0.28",
"@storybook/addon-viewport": "^6.0.28",
"@storybook/react": "^6.0.28",
"@types/lodash": "^4.14.164",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/react-modal": "^3.10.6",
"@types/styled-components": "^5.1.4",
"@types/styled-system": "^5.1.10",
"@types/styled-system__theme-get": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"@union/react-schematics": "^0.0.0",
"babel-loader": "^8.0.6",
"concurrently": "^5.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"path": "^0.12.7",
"prettier": "^2.1.2",
"react-docgen-typescript-loader": "^3.6.0",
"react-testing-library": "^8.0.1",
"rollup": "^1.27.5",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-svgo": "^1.1.0",
"rollup-plugin-typescript2": "^0.29.0",
"semver": "^7.1.1",
"typescript": "^4.0.5",
"typescript-styled-plugin": "^0.15.0"
},
"resolutions": {
"**/react": "^17.0.1",
"**/react-dom": "^17.0.1"
}
}