@justfixnyc/component-library 0.25.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +104 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # JustFix Component Library
2
+
3
+ Component library for JustFix's design system.
4
+
5
+ Just testing things out right now...
6
+
7
+ Based this repo on this [course](https://www.newline.co/courses/newline-guide-to-building-a-company-component-library) ([local copy of course mateirals in our drive](https://drive.google.com/file/d/1Q1aYhktm0aacn-GIlC7fxOCrzoIoSZos/view?usp=share_link))
package/package.json ADDED
@@ -0,0 +1,104 @@
1
+ {
2
+ "name": "@justfixnyc/component-library",
3
+ "description": "JustFix Component Library",
4
+ "license": "MIT",
5
+ "version": "0.25.8",
6
+ "main": "dist/index.cjs.js",
7
+ "module": "dist/index.esm.js",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "npm run build:js && npm run build:types",
13
+ "build:js": "rollup -c rollup.config.js",
14
+ "build:types": "tsc -p tsconfig.build.json",
15
+ "test": "npm run test:ts && npm run test:jest",
16
+ "test:jest": "jest",
17
+ "test:ts": "tsc",
18
+ "lint": "npm run lint:format && npm run lint:js",
19
+ "lint:format": "prettier --check --ignore-unknown \"src/**/*\"",
20
+ "lint:js": "eslint src/**",
21
+ "format": "prettier --write --ignore-unknown \"src/**/*\"",
22
+ "storybook": "start-storybook -p 6006",
23
+ "build-storybook": "build-storybook",
24
+ "deploy-storybook": "storybook-to-ghpages"
25
+ },
26
+ "sideEffects": false,
27
+ "types": "dist/typings/index.d.ts",
28
+ "dependencies": {
29
+ "@babel/runtime": "^7.12.5",
30
+ "classnames": "^2.3.2",
31
+ "nanoid": "^3.1.20",
32
+ "polished": "^4.1.0",
33
+ "prop-types": "^15.8.1"
34
+ },
35
+ "peerDependencies": {
36
+ "@lingui/cli": ">=2.9.1",
37
+ "@lingui/macro": ">=2.9.1",
38
+ "@lingui/react": ">=2.9.1",
39
+ "@types/lingui__core": ">=2.7.0",
40
+ "@types/lingui__macro": ">=2.7.3",
41
+ "@types/lingui__react": ">=2.8.1",
42
+ "react": ">=16.12.0",
43
+ "react-dom": ">=16.12.0",
44
+ "styled-components": ">=3"
45
+ },
46
+ "devDependencies": {
47
+ "@babel/core": "^7.12.10",
48
+ "@babel/plugin-transform-runtime": "^7.12.10",
49
+ "@babel/preset-env": "^7.17.10",
50
+ "@babel/preset-react": "^7.16.7",
51
+ "@babel/preset-typescript": "^7.16.7",
52
+ "@lingui/cli": "^2.9.1",
53
+ "@lingui/macro": "^2.9.1",
54
+ "@lingui/react": "^2.9.1",
55
+ "@mdx-js/react": "^1.6.22",
56
+ "@rollup/plugin-babel": "^5.2.3",
57
+ "@rollup/plugin-commonjs": "^17.1.0",
58
+ "@rollup/plugin-node-resolve": "^11.1.1",
59
+ "@storybook/addon-actions": "^6.5.9",
60
+ "@storybook/addon-docs": "^6.5.9",
61
+ "@storybook/addon-essentials": "^6.5.9",
62
+ "@storybook/addon-links": "^6.5.9",
63
+ "@storybook/react": "^6.5.9",
64
+ "@storybook/storybook-deployer": "^2.8.16",
65
+ "@testing-library/jest-dom": "^5.16.4",
66
+ "@testing-library/react": "^13.3.0",
67
+ "@types/jest": "^26.0.20",
68
+ "@types/lingui__core": "^2.7.0",
69
+ "@types/lingui__macro": "^2.7.3",
70
+ "@types/lingui__react": "^2.8.1",
71
+ "@types/react": "^18.0.14",
72
+ "@types/react-dom": "^18.0.5",
73
+ "@types/styled-components": "^5.1.25",
74
+ "@typescript-eslint/eslint-plugin": "^4.14.2",
75
+ "@typescript-eslint/parser": "^4.14.2",
76
+ "babel-loader": "^8.2.2",
77
+ "babel-plugin-inline-react-svg": "^2.0.1",
78
+ "babel-plugin-styled-components": "^2.0.7",
79
+ "bootstrap": "^4.6.0",
80
+ "eslint": "^7.32.0",
81
+ "eslint-config-prettier": "^7.2.0",
82
+ "eslint-plugin-jest": "^27.4.2",
83
+ "eslint-plugin-prettier": "^4.0.0",
84
+ "eslint-plugin-react": "^7.22.0",
85
+ "eslint-plugin-react-hooks": "^4.2.0",
86
+ "jest": "^26.6.3",
87
+ "jest-styled-components": "^7.0.3",
88
+ "prettier": "^2.2.1",
89
+ "react": "^18.2.0",
90
+ "react-dom": "^18.2.0",
91
+ "react-is": "^17.0.1",
92
+ "rollup": "^2.38.3",
93
+ "rollup-plugin-delete": "^2.0.0",
94
+ "rollup-plugin-node-externals": "^2.2.0",
95
+ "styled-components": "^5.3.5",
96
+ "ts-jest": "^26.5.0",
97
+ "typescript": "^4.1.3"
98
+ },
99
+ "eslintConfig": {
100
+ "extends": [
101
+ "plugin:storybook/recommended"
102
+ ]
103
+ }
104
+ }