-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.08 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
{
"name": "@launchware/replicator",
"version": "0.0.7",
"description": "React components commonly used by Launch Academy developers",
"main": "dist/index.js",
"module": "dist/index.es.js",
"license": "MIT",
"typings": "dist/index.d.ts",
"files": [
"CHANGELOG.md",
"dist",
"README.md",
"dist/**",
"dist/css/**"
],
"resolutions": {
"jackspeak": "2.1.1"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@launchware/eslint-config-react": "0.0.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@storybook/addon-actions": "^7.4.3",
"@storybook/addon-docs": "^7.4.3",
"@storybook/addon-essentials": "^7.4.3",
"@storybook/addon-interactions": "^7.4.3",
"@storybook/addon-links": "^7.4.3",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-storysource": "^7.4.3",
"@storybook/react": "^7.4.3",
"@storybook/react-webpack5": "^7.4.3",
"@storybook/testing-library": "^0.0.9",
"@types/jest": "^27.4.0",
"@types/mdx": "^2.0.1",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-loader": "^8.2.3",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.5.6",
"gh-pages": "^3.2.3",
"globby": "^13.1.1",
"install-peerdeps": "^3.0.3",
"jest": "^27.5.1",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1",
"postcss-nesting": "^12.0.1",
"prettier": "^2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router": "^6.2.1",
"react-router-dom": "^6.2.1",
"rollup": "^2.67.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-uglify": "^6.0.4",
"storybook": "^7.4.3",
"typescript": "^5.2.2",
"webpack": "5"
},
"peerDependencies": {
"react": ">= 17",
"react-dom": ">= 17",
"react-router": "^6.2",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1",
"postcss-nesting": "^12.0.1"
},
"scripts": {
"build": "yarn run rollup -c",
"build-storybook": "storybook build -o site/storybook",
"dev": "yarn run build -w",
"lint:style": "yarn run prettier . -c",
"lint:syntax": "yarn run eslint .",
"prepare": "yarn run build",
"site:publish": "yarn run build-storybook && yarn run site:push",
"site:push": "yarn run gh-pages -d site -b site",
"storybook": "storybook dev -p 6006"
}
}