-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.61 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
{
"name": "pickup-ui",
"version": "0.0.1",
"description": "A collection of React Components that make up the PickUp world. 🌎⚡",
"main": "index.js",
"repository": "[email protected]:PlayPickUp/pickup-ui.git",
"author": "PickUp <https://www.playpickup.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/core",
"packages/icons",
"playground/*"
],
"nohoist": [
"packages/*"
]
},
"storybook-deployer": {
"gitUsername": "erwstout",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook to GitHub Pages"
},
"scripts": {
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"build-storybook": "build-storybook -s ./stories/static",
"deploy-storybook": "storybook-to-ghpages",
"start": "node -e \"console.log('Starting all packages in watch mode!')\" && concurrently \"yarn start:playground\" \"yarn start:icons\" \"yarn storybook\"",
"start:playground": "cd playground && yarn start",
"start:core": "cd packages/core && yarn start",
"start:icons": "cd packages/icons && yarn start",
"format": "prettier . --write --ignore-unknown",
"sematic-release": "yarn workspaces run semantic-release -e semantic-release-monorepo"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "yarn eslint .",
"*": "prettier --write --ignore-unknown ."
},
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"classnames": "^2.2.6",
"color": "^3.1.3",
"downshift": "^6.1.0",
"eslint": "^7.18.0",
"formik": "^2.2.6",
"he": "^1.2.0",
"lodash": "^4.17.21",
"match-sorter": "^6.2.0",
"moment": "^2.29.2",
"moment-timezone": "^0.5.33",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-jss": "^10.5.1",
"react-router-dom": "^5.2.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-url": "^6.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/react": "^6.1.15",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/react": "^11.2.3",
"@types/classnames": "^2.2.11",
"@types/color": "^3.0.1",
"@types/he": "^1.1.1",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/regenerator-runtime": "^0.13.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.38.3",
"rollup-plugin-import-css": "^3.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"semantic-release": "^19.0.3",
"semantic-release-monorepo": "^7.0.5",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
}
}