-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 3.26 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
{
"name": "farmblocks",
"version": "0.1.0",
"description": "A collection of user interface blocks",
"author": "Crave Food Systems and AUTHORS",
"license": "MIT",
"main": "index.js",
"private": true,
"scripts": {
"start": "yarn storybook",
"build": "lerna run build",
"test": "jest",
"snyk": "snyk test",
"lint": "eslint -c .eslintrc.js --ignore-path .eslintignore",
"lint.test": "eslint -c .test.eslintrc.js --ignore-path .test.eslintignore",
"coverage": "yarn test --runInBand --ci --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"commit": "git-cz",
"storybook": "start-storybook -p 6006 -s .storybook/assets",
"build-storybook": "build-storybook -s .storybook/assets -o docs",
"create-component": "create-component"
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CraveFood/farmblocks.git"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@crave/farmblocks-dev-scaffold": "^1.2.0",
"@react-spring/web": "^9.3.2",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-docs": "^6.4.9",
"@storybook/addon-storyshots": "^6.4.9",
"@storybook/addon-viewport": "^6.4.9",
"@storybook/addons": "^6.4.9",
"@storybook/react": "^6.4.9",
"@styled-system/prop-types": "^5.1.5",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "27.4.5",
"babel-loader": "^8.2.3",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-styled-components": "^2.0.2",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-lerna-changelog": "^2.0.3",
"enzyme": "^3.11.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-storybook": "^0.5.5",
"jest": "27.4.5",
"jest-environment-jsdom": "^27.4.4",
"jest-environment-jsdom-global": "^3.0.0",
"jest-enzyme": "^7.1.2",
"jest-styled-components": "^7.0.3",
"lerna": "4.0.0",
"prettier": "^2.5.1",
"prop-types": "^15.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"recompose": "^0.30.0",
"snyk": "^1.298.0",
"styled-components": "^5.3.3",
"styled-system": "^5.1.5"
}
}