-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.69 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
{
"name": "shopping-cart",
"version": "1.0.0",
"description": "A simple shopping cart project",
"main": "index.js",
"scripts": {
"mocha": "NODE_ENV=test mocha --compilers js:babel-register --require babel-polyfill ./.storybook/mocha/config.js \"./app/**/*.stories.js\" --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --progress",
"storybook": "start-storybook -s ./public -p 9001",
"build-storybook": "build-storybook",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Raat/shopping-cart.git"
},
"author": "jeffrey raat",
"license": "MIT",
"bugs": {
"url": "https://github.com/Raat/shopping-cart/issues"
},
"homepage": "https://github.com/Raat/shopping-cart#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"inline-style-prefixer": "^3.0.7",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-docgen": "^2.18.0",
"react-dom": "^15.6.1",
"react-intl": "^2.3.0",
"react-intl-redux": "^0.6.0",
"react-redux": "^5.0.6",
"react-slick": "^0.15.4",
"react-styleguidist": "^6.0.23",
"redux": "^3.7.2",
"reselect": "^3.0.1",
"styled-components": "^2.1.2",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-info": "^3.2.9",
"@storybook/addon-knobs": "^3.2.8",
"@storybook/addon-links": "^3.2.6",
"@storybook/react": "^3.2.8",
"autoprefixer": "^7.1.3",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"expect": "^1.20.2",
"jsdom": "11.2.0",
"jsdom-global": "3.0.2",
"json": "^9.0.6",
"mocha": "^3.5.0",
"react-addons-test-utils": "^15.6.0",
"react-storybook-addon-props-combinations": "^1.0.0",
"react-test-renderer": "^15.6.1",
"sinon": "^3.2.1",
"storybook-addon-specifications": "^2.1.1",
"styleguidist-goodies": "^2.0.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}