forked from CraveFood/farmblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
{
"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": {
"@crave/farmblocks-dev-scaffold": "^0.3.0",
"@storybook/addon-actions": "^3.4.6",
"@storybook/addon-info": "^3.4.6",
"@storybook/addon-links": "^3.4.6",
"@storybook/addon-storyshots": "^3.4.6",
"@storybook/addons": "^3.4.6",
"@storybook/react": "^3.4.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"commitizen": "^2.10.1",
"coveralls": "^3.0.1",
"cz-lerna-changelog": "^1.2.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.1.0",
"jest-enzyme": "^6.0.1",
"jest-styled-components": "^6.1.1",
"lerna": "2.11.0",
"prettier": "^1.13.4",
"prop-types": "^15.6.0",
"react": "^16.4.0",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.0",
"recompose": "^0.28.0",
"snyk": "^1.82.1",
"styled-components": "^3.3.2"
},
"resolutions": {
"ua-parser-js": "^0.7.18",
"mkdirp": "^0.5.1"
}
}