This repository was archived by the owner on Sep 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.59 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.59 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@parishconnect/react-ui",
"version": "1.6.2",
"description": "React UI Kit for ParishConnect's webapp",
"contributors": [
"Evan Hennessy"
],
"keywords": [
"ui",
"react"
],
"repository": "https://github.com/parishconnect/react-ui",
"license": "UNLICENSED",
"main": "commonjs/index.js",
"module": "esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"commonjs",
"esm",
"dist"
],
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com/"
},
"sideEffects": false,
"scripts": {
"start": "yarn dev",
"test": "yarn tsc --noEmit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"prepublishOnly": "yarn build",
"dev": "start-storybook -p 6006",
"coverage": "nyc report --reporter=html",
"build-custom-icons": "node ./tools/build-icons-json.js",
"generate-icons": "yarn build-custom-icons && ./tools/generate-icons.js",
"create-package": "./tools/create-package.js",
"create-package:components": "./tools/create-package-components.js",
"create-docs-template": "./tools/create-docs-template.js",
"build-commonjs": "BABEL_ENV=commonjs babel src --out-dir commonjs --ignore '**/stories','**/test' --source-maps inline --extensions '.js,.ts,.tsx'",
"build-esm": "BABEL_ENV=esm babel src --out-dir esm --ignore '**/stories','**/test' --source-maps inline --extensions '.js,.ts,.tsx'",
"build-types": "tsc --declaration --emitDeclarationOnly",
"build": "concurrently --names 'types,commonjs,esm' 'yarn build-types' 'yarn build-commonjs' 'yarn build-esm'",
"build-storybook": "build-storybook -s .storybook/static -o .out",
"clean": "git clean -Xdf",
"release": "np --no-publish --skip-cleanup",
"chromatic": "chromatic test --storybook-addon --script-name dev --app-code=alj8xoz1ujt"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@parishconnect/box": "^2.3.0",
"arrify": "^2.0.1",
"date-fns": "^2.9.0",
"exenv": "^1.2.2",
"feather-icons": "^4.26.0",
"fuzzaldrin-plus": "^0.6.0",
"lodash": "^4.17.19",
"prop-types": "^15.0.0",
"react-autosize-textarea": "^7.0.0",
"react-tiny-virtual-list": "^2.2.0",
"react-transition-group": "^4.3.0",
"tinycolor2": "^1.4.1",
"utility-types": "^3.10.0",
"uuid": "^3.4.0"
},
"peerDependencies": {
"luxon": "^1.11.4",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@parishconnect/prettier-config": "^1.0.0",
"@reactions/component": "^2.0.2",
"@storybook/addon-actions": "^5.3.13",
"@storybook/addon-links": "^5.3.13",
"@storybook/addon-options": "^5.3.13",
"@storybook/addon-viewport": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/react": "^5.3.13",
"@storybook/storybook-deployer": "^2.8.2",
"@types/babel__core": "^7.1.5",
"@types/cheerio": "^0.22.16",
"@types/exenv": "^1.2.0",
"@types/faker": "^4.1.9",
"@types/feather-icons": "^4.7.0",
"@types/fuzzaldrin-plus": "^0.6.0",
"@types/lodash": "^4.14.149",
"@types/luxon": "^1.21.0",
"@types/prettier": "^1.19.0",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@types/react-transition-group": "^4.2.3",
"@types/starwars-names": "^1.6.0",
"@types/tinycolor2": "^1.4.2",
"@types/uuid": "^3.4.7",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"cache-loader": "^4.1.0",
"camelcase": "^5.0.0",
"cheerio": "^1.0.0-rc.2",
"eslint-config-prettier": "^6.10.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.18.3",
"execa": "^4.0.0",
"faker": "^4.1.0",
"fs-extra": "^8.1.0",
"html-minifier": "^4.0.0",
"luxon": "^1.22.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"size-limit": "^4.0.2",
"starwars-names": "^1.6.0",
"tsdx": "^0.12.3",
"typescript": "^3.8.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.6"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}