-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.03 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
{
"name": "cobuy-atomic",
"version": "0.0.1",
"description": "Cobuy built from the ground up using atomic-dog",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/root-systems/cobuy-atomic.git"
},
"keywords": [
"atomic design",
"cobuy",
"group buying"
],
"author": "rootsystems",
"license": "UNLICENCED",
"bugs": {
"url": "https://github.com/root-systems/cobuy-atomic/issues"
},
"homepage": "https://github.com/root-systems/cobuy-atomic#readme",
"scripts": {
"test": "echo 'one day tests will exist'",
"start": "start-storybook -p 9001 -c .storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c ./ -s built-storybooks",
"lint": "standard",
"format": "prettier-standard ui/**/**/**/**/**/**/*.js && prettier-standard ux/**/**/**/**/**/**/*.js && prettier-standard domains/**/**/**/**/**/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"...": "..."
}
},
"lint-staged": {
"ui/**/**/**/**/**/*.js": [
"standard",
"git add"
],
"domains/**/**/**/**/**/*.js": [
"standard",
"git add"
]
},
"dependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.1",
"@babel/plugin-transform-react-jsx": "^7.0.0-rc.1",
"@babel/plugin-transform-runtime": "^7.0.0-rc.1",
"@babel/runtime": "^7.0.0-rc.1",
"@material-ui/core": "^1.5.0",
"extract-svg-path": "^2.1.0",
"formik": "^1.2.0",
"formik-material-ui": "0.0.9",
"json-schema-prop-types": "^0.1.0",
"lodash": "^4.17.10",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-swipeable-views": "^0.12.16",
"svg-path-loader": "0.0.4",
"yup": "^0.26.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@sambego/storybook-state": "^1.2.0",
"@storybook/addon-a11y": "4.0.0-alpha.16",
"@storybook/addon-actions": "4.0.0-alpha.16",
"@storybook/addon-centered": "^4.0.0-alpha.21",
"@storybook/addon-events": "4.0.0-alpha.16",
"@storybook/addon-info": "4.0.0-alpha.16",
"@storybook/addon-knobs": "4.0.0-alpha.16",
"@storybook/addon-links": "4.0.0-alpha.16",
"@storybook/addon-notes": "4.0.0-alpha.16",
"@storybook/addon-options": "4.0.0-alpha.16",
"@storybook/addon-storysource": "4.0.0-alpha.16",
"@storybook/addon-viewport": "4.0.0-alpha.16",
"@storybook/addons": "4.0.0-alpha.16",
"@storybook/components": "^4.0.0-alpha.16",
"@storybook/core-events": "4.0.0-alpha.16",
"@storybook/node-logger": "4.0.0-alpha.16",
"@storybook/react": "4.0.0-alpha.16",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-inline-react-svg": "^0.5.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.14",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.2",
"moment": "^2.22.2",
"prettier-standard": "^8.0.1",
"react-inspector": "^2.3.0",
"standard": "^11.0.1",
"storybook-addon-material-ui": "^0.9.0-alpha.8",
"wired-elements": "^0.7.2"
}
}