-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.51 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
{
"name": "@launchpadlab/lp-components",
"version": "10.1.0",
"engines": {
"node": "^18.12 || ^20.0"
},
"description": "Our Components",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"repository": "launchpadlab/lp-components",
"homepage": "https://github.com/launchpadlab/lp-components",
"author": {
"name": "Dave Corwin",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"start": "yarn && yarn build:development",
"build": "yarn build:cjs && yarn build:esm && yarn build:styles",
"build:cjs": "babel src --out-dir lib --ignore src/**/__mocks__/**/*.js",
"build:esm": "BABEL_ENV=esm babel src --out-dir esm --ignore src/**/__mocks__/**/*.js",
"build:styles": "cp -r src/styles lib/styles && sass src/styles:lib/styles",
"build:development": "BABEL_ENV=esm babel src --watch --out-dir esm",
"clean": "rm -rf lib esm",
"docs": "documentation build src/index.js -f md -o docs.md",
"format": "prettier --write \"(src|test|stories|.storybook)/**/*.+(js|jsx|json|scss)\"",
"lint": "eslint src --max-warnings=0",
"prepare": "husky install && yarn run clean && yarn run build",
"storybook": "yarn && start-storybook -p 6006",
"test": "jest --coverage",
"size": "yarn build && size-limit",
"storybook:build": "build-storybook -o .storybook/static/storybook",
"heroku-postbuild": "yarn run storybook:build"
},
"files": [
"README.md",
"LICENSE.md",
"lib/",
"esm/"
],
"dependencies": {
"classnames": "^2.3.1",
"cleave.js": "^1.6.0",
"date-fns": "^2.28.0",
"filter-invalid-dom-props": "^3.0.1",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react-color": "^2.19.3",
"react-datepicker": "^4.8.0",
"react-modal": "^3.14.4",
"react-outside-click-handler": "^1.3.0",
"react-switch": "^7.0.0",
"redux-flash": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@launchpadlab/babel-preset": "^2.1.1",
"@launchpadlab/eslint-config": "^3.0.1",
"@launchpadlab/prettier-config": "^1.0.0",
"@size-limit/preset-small-lib": "^8.2.6",
"@storybook/addon-a11y": "^6.4.22",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-storysource": "^6.4.22",
"@storybook/addon-viewport": "^6.4.22",
"@storybook/addons": "^6.4.22",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.4.22",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"babel-loader": "^9.1.0",
"bourbon": "^7.2.0",
"bourbon-neat": "^4.0.0",
"css-loader": "^6.7.2",
"documentation": "^14.0.2",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-canvas-mock": "^2.1.1",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^14.0.1",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"redux": "^4.1.2",
"regenerator-runtime": "^0.14.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"size-limit": "^8.2.6",
"style-loader": "^3.3.1",
"webpack": "^5.75.0"
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.0 || ^18.0.0"
},
"prettier": "@launchpadlab/prettier-config",
"lint-staged": {
"src/**/*.{js,jsx}": "eslint --fix --max-warnings=0",
"src/**/*.{js,jsx,json,scss}": "prettier --write"
}
}