-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.99 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
{
"name": "@vschool/lotus",
"version": "3.0.0",
"description": "Component library and base brand styles for V School projects",
"contributors": [
{
"name": "Bob Ziroll",
"url": "https://github.com/bobziroll"
},
{
"name": "Nate Jensen",
"url": "https://github.com/njensen58"
},
{
"name": "Michael Stedman",
"url": "https://github.com/recondesigns"
}
],
"license": "MIT",
"repository": "https://github.com/VSchool/lotus",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"prepare": "npm run pretty && run-s build",
"publish-patch": "npm version patch && npm publish",
"publish-minor": "npm version minor && npm publish",
"publish-major": "npm version major && npm publish",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-image": "^2.0.6",
"@storybook/addon-actions": "^6.3.11",
"@storybook/addon-essentials": "^6.3.11",
"@storybook/addon-links": "^6.3.11",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.3.11",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^2.2.0",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-scripts": "^5.0.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"sass": "^1.65.1"
},
"files": [
"dist"
],
"dependencies": {
"formik": "^2.4.3",
"prop-types": "^15.8.1",
"react-id-generator": "^3.0.2",
"styled-components": "^5.3.11"
}
}