-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
132 lines (132 loc) · 4.15 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "password.live",
"description": "A simple password generator.",
"version": "0.2.0",
"main": "./source/application/client.js",
"author": "Shawn Seymour <shawn@devshawn.com>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf dist/",
"serve": "webpack-dev-server --hot --history-api-fallback --port 8080",
"build": "NODE_ENV=production webpack",
"dist": "npm run clean && npm run build",
"test": "jest"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-plugin-react-html-attrs": "^2.0.0",
"css-loader": "^0.28.7",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"html-webpack-react-root-plugin": "^0.9.0",
"jest-cli": "^21.2.1",
"regenerator-runtime": "^0.11.0",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@material-ui/core": "^3.3.1",
"@material-ui/lab": "^3.0.0-alpha.21",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.0.8",
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"immutable": "^3.8.2",
"js-cookie": "^2.2.0",
"material-ui": "^0.19.3",
"password-generator": "^2.2.3",
"ptsans-npm-webfont": "^0.0.4",
"query-string": "^6.2.0",
"react": "^16.0.0",
"react-cookie": "^3.0.4",
"react-dom": "^16.0.0",
"react-grid-system": "^2.9.6",
"react-hot-loader": "next",
"react-notification": "^6.8.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.4.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"uuid": "^3.1.0"
},
"resolutions": {
"react": "16.0.0",
"react-dom": "16.0.0",
"uuid": "3.1.0",
"chalk": "2.1.0",
"ansi-styles": "3.2.0",
"strip-ansi": "4.0.0",
"supports-color": "4.4.0",
"ansi-regex": "3.0.0",
"core-js": "2.5.1",
"regenerator-runtime": "0.11.0",
"hoist-non-react-statics": "2.3.1",
"source-map": "0.6.1",
"process": "0.11.10",
"path-to-regexp": "1.7.0",
"isarray": "1.0.0",
"jsesc": "1.3.0",
"minimist": "1.2.0",
"balanced-match": "1.0.0",
"pify": "3.0.0",
"find-up": "2.1.0",
"path-exists": "3.0.0",
"regexpu-core": "2.0.0",
"postcss": "6.0.13",
"has-flag": "2.0.0",
"ajv": "5.2.3",
"acorn": "5.1.2",
"async": "2.5.0",
"yargs": "8.0.2",
"inherits": "2.0.3",
"string_decoder": "1.0.3",
"punycode": "1.4.1",
"hash-base": "3.0.4",
"camelcase": "4.1.0",
"cliui": "3.2.0",
"kind-of": "3.2.2",
"is-glob": "3.1.0",
"is-extglob": "2.1.1",
"is-number": "3.0.0",
"string-width": "2.1.1",
"is-fullwidth-code-point": "2.0.0",
"qs": "6.5.1",
"assert-plus": "1.0.0",
"os-locale": "2.1.0",
"read-pkg-up": "2.0.0",
"which-module": "2.0.0",
"yargs-parser": "7.0.0",
"read-pkg": "2.0.0",
"load-json-file": "2.0.0",
"path-type": "2.0.0",
"strip-bom": "3.0.0",
"array-flatten": "2.1.1",
"setprototypeof": "1.1.0",
"faye-websocket": "0.11.1",
"url-parse": "1.1.9",
"querystringify": "1.0.0"
},
"homepage": "https://github.com/devshawn/password.live#readme",
"directories": {
"test": "__tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devshawn/password.live.git"
},
"bugs": {
"url": "https://github.com/devshawn/password.live/issues"
}
}