-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "@sparkpost/libby-react",
"version": "0.0.58",
"description": "Libby is an open source tool for React component development",
"publishConfig": {
"access": "public"
},
"main": "src/api/index.js",
"types": "src/api/types.d.ts",
"bin": {
"libby": "bin/cli.mjs"
},
"scripts": {
"start:cli": "rimraf dist && rollup -w --config rollup.config.ts",
"build:cli": "rimraf dist && rollup --config rollup.config.ts",
"format": "prettier --write '**/*.{js,md}'",
"build:18": "cd tests/react-18 && npm ci && npm run build",
"build:17": "cd tests/react-17 && npm ci && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparkPost/libby-react.git"
},
"author": "SparkPost",
"license": "MIT",
"bugs": {
"url": "https://github.com/SparkPost/libby-react/issues"
},
"homepage": "https://github.com/SparkPost/libby-react#readme",
"dependencies": {
"@styled-system/css": "^5.1.5",
"@sweatpants/box": "0.0.6",
"@sweatpants/button": "0.0.6",
"@sweatpants/inline": "0.0.6",
"@sweatpants/screenreaderonly": "0.0.6",
"@sweatpants/stack": "0.0.6",
"@sweatpants/theme": "0.0.6",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.17.0",
"boxen": "^7.0.0",
"chalk": "^5.0.1",
"css-loader": "^5.0.0",
"esbuild": "^0.14.43",
"esbuild-loader": "^2.19.0",
"file-loader": "^6.2.0",
"find-up": "^6.3.0",
"html-webpack-plugin": "^5.5.0",
"meow": "^10.1.2",
"react-element-to-jsx-string": "^15.0.0",
"react-error-boundary": "^3.1.4",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"react-syntax-highlighter": "^15.4.4",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
"styled-components": "^5.3.5",
"webpack": "^5.73.0",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.3.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"prettier": "^2.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.75.6"
}
}