-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
82 lines (82 loc) · 2.81 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
{
"name": "reactjs-workshop",
"version": "0.1.0",
"description": "ReactJS Training: zero to hero",
"private": true,
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "cross-env NODE_ENV=production build-storybook --config-dir ./.storybook",
"start": "cross-env NODE_ENV=development start-storybook --config-dir ./.storybook -p 6006",
"server": "json-server --read-only db.json",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.prod.js",
"build:dev": "cross-env NODE_ENV=development webpack --config ./webpack.dev.js",
"lint": "eslint --ext .js --ext .jsx --config ./.eslintrc.js --ignore-pattern /node_modules/ ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgallacher/reactjs-workshop.git"
},
"keywords": [],
"author": "Tom Gallacher <tgallacher@users.noreply.github.com>",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/tgallacher/reactjs-workshop/issues"
},
"homepage": "https://github.com/tgallacher/reactjs-workshop#readme",
"sideEffects": false,
"dependencies": {
"emotion": "^9.2.12",
"json-server": "^0.14.2",
"moment": "^2.24.0",
"polished": "^2.3.3",
"prop-types": "^15.6.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-emotion": "^9.2.12",
"react-redux": "^5.1.1",
"react-select": "^2.3.0",
"react-virtualized": "^9.21.0",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"redux-saga-test-plan": "^3.7.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.0.4",
"@storybook/addon-links": "^4.0.4",
"@storybook/addon-options": "^4.0.4",
"@storybook/addons": "^4.0.4",
"@storybook/react": "^4.0.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-emotion": "^9.2.11",
"babel-plugin-module-resolver": "^3.1.3",
"chai": "^4.2.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"faker": "^4.1.0",
"jest": "^23.6.0",
"sinon": "^7.2.3",
"storybook-addon-specifications": "^2.1.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-merge": "^4.2.1"
}
}