-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 3.38 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
{
"name": "react-blockstack-redux-bundler",
"description": "A react starter with Blockstack auth/storage and state management with redux-bundler.",
"version": "0.0.1",
"author": "Thomas Osmonson <[email protected]>",
"bugs": "https://github.com/aulneau/react-blockstack-redux-bundler/issues",
"dependencies": {
"blockstack": "^18.1.0",
"immer": "^1.7.4",
"internal-nav-helper": "^1.0.2",
"money-clip": "^3.0.0",
"polished": "^2.3.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-loadable": "^5.5.0",
"redux-bundler": "^22.2.0",
"redux-bundler-react": "^1.1.0",
"styled-components": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.4",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.6.0",
"fast-async": "^6.3.8",
"hard-source-webpack-plugin": "^0.12.0",
"html-loader": "^0.5.5",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"mini-css-extract-plugin": "^0.4.4",
"name-all-modules-plugin": "^1.0.1",
"prettier": "^1.14.3",
"react-hot-loader": "^4.3.12",
"serve": "^10.0.2",
"size-plugin": "^1.0.1",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.24.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-pwa-manifest": "^3.7.1",
"webpack-serve": "^2.0.2",
"webpack-serve-overlay": "^0.3.0",
"webpack-serve-waitpage": "^1.0.2",
"webpack-stylish": "^0.1.8",
"webpackbar": "^2.6.3",
"workbox-webpack-plugin": "^3.6.3",
"workerize-loader": "^1.0.4"
},
"homepage": "https://github.com/aulneau/react-blockstack-redux-bundler",
"keywords": [
"blockstack",
"react",
"redux",
"redux-bundler"
],
"license": "MIT",
"main": "src/index.js",
"repository": "https://github.com/aulneau/react-blockstack-redux-bundler",
"scripts": {
"build": "NODE_ENV=production webpack --mode production",
"build:analyze": "ANALYZE=true NODE_ENV=production webpack --mode production",
"dev": "NODE_ENV=development webpack-serve --open",
"format": "prettier --write \"src/**/*.js\" && echo -e '\\033[0;32m'💅 Just use prettier'\\033[0m'",
"start": "serve --single --cors dist"
}
}