-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.31 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
{
"name": "wonderland",
"version": "3.0.8",
"description": "A guided reading of Alice's Adventures in Wonderland for React and Redux",
"main": "index.html",
"scripts": {
"test": "test",
"start": "concurrently \"npm:dev:*\"",
"start:prod": "npm run prod:serve",
"build": "webpack --mode production -p --config webpack.config.build.js",
"deploy": "git checkout gh-pages && git merge master && git push origin gh-pages && git checkout master",
"lint:js": "esw --color",
"lint:css": "stylelint \"src/**/*.css\"",
"lint": "concurrently npm:lint:*",
"lint-fix:js": "esw --fix --cache --color",
"lint-fix:css": "stylelint \"src/**/*.css\" --fix",
"lint-fix": "concurrently npm:lint-fix:*",
"dev:tools": "\"react-devtools\"",
"dev:serve": "npm run serve -- --mode development --config webpack.config.dev.js",
"prod:serve": "npm run serve -- --mode production --config webpack.config.build.js",
"serve": "webpack-dev-server --inline --hot"
},
"author": "Patrick Fricano <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-partial-application": "^7.4.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-regenerator": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.2",
"babel-eslint": "^11.0.0-beta.0",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-watch": "^5.0.1",
"extract-css-chunks-webpack-plugin": "^3.3.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"react-devtools": "^3.6.1",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.1.0",
"stylelint-webpack-plugin": "^0.10.5",
"terser-webpack-plugin": "^1.2.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"classnames": "^2.2.6",
"intersection-observer": "^0.5.1",
"lodash": "^4.17.11",
"lost": "^8.3.1",
"normalizr": "^3.3.0",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-hot-loader": "^4.6.5",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"requestidlecallback": "^0.3.0",
"resize-observer-polyfill": "^1.5.1",
"whatwg-fetch": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickfatrick/wonderland.git"
}
}