forked from calebj0seph/password-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.75 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.75 KB
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
{
"name": "password-generator",
"version": "1.0.0",
"description": "A secure & customisable password generator made with Vue.js",
"homepage": "http://onlykey.io",
"repository": "github:trustcrypto/password-generator",
"scripts": {
"build": "rimraf dist && webpack --mode=production --progress --config webpack.prod.js",
"start": "webpack serve --color --progress --config webpack.dev.js"
},
"author": "CryptoTrust",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "7.13.10",
"@material-ui/core": "^4.11.3",
"focus-visible": "^5.2.0",
"github-fork-ribbon-css": "^0.2.3",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-fast-compare": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^5.1.2",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^4.2.0",
"rimraf": "^3.0.2",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"svg-react-loader": "^0.4.6",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"worker-loader": "^3.0.8"
}
}