-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.88 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
{
"name": "bzc-ui",
"version": "0.2.3",
"description": "Home to a collection of superstar atomic react components",
"main": "lib/index.js",
"repository": "https://github.com/Brianzchen/bzc-ui.git",
"author": "Brian Chen",
"license": "MIT",
"scripts": {
"clean": "rm -rf lib",
"build:flow": "flow-copy-source --ignore '*/**/*.{stories,spec}.*' src lib",
"build": "NODE_ENV=production babel src --out-dir lib && pnpm build:flow && cp src/types.js types.js",
"prepublishOnly": "pnpm clean && pnpm jest && pnpm flow && pnpm build",
"docgen": "react-docgen src --out=website/components.json --pretty --exclude='/.*[^(index\\.js$)]/' && node ./scripts/post-docgen.js",
"website:prep": "rm -rf website/dist && pnpm docgen && node ./scripts/getStoriesList.js",
"website:build": "pnpm website:prep && MODE=website NODE_ENV=production pnpm webpack --config website/webpack.config.js",
"website:start": "pnpm website:prep && pnpm webpack serve --config website/webpack.config.js"
},
"dependencies": {
"aphrodite": "^2.4.0",
"color": "^4.2.1",
"deepmerge": "^4.2.2",
"hex-to-rgb": "^1.0.1",
"key-commander": "^0.1.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-syntax-flow": "^7.23.3",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@faker-js/faker": "^5.5.3",
"@testing-library/react": "^12.1.3",
"app-root-path": "^3.0.0",
"axios": "^1.4.0",
"babel-loader": "^8.2.3",
"babel-plugin-syntax-hermes-parser": "^0.20.1",
"babel-plugin-transform-flow-enums": "^0.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-bzc": "1.0.14",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-fb-flow": "^0.0.5",
"eslint-plugin-ft-flow": "^3.0.7",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unicorn": "^51.0.1",
"flow-bin": "^0.231.0",
"flow-copy-source": "^2.0.9",
"flow-enums-runtime": "^0.0.6",
"hermes-eslint": "^0.20.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "18.2.0",
"react-docgen": "^5.4.0",
"react-dom": "18.2.0",
"react-media": "^1.10.0",
"react-router-dom": "^6.11.2",
"react-syntax-highlighter": "^15.4.5",
"regenerator-runtime": "^0.13.11",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}