forked from bokub/vanity-eth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "vanity-eth",
"description": "Browser-based ETH vanity address generator ",
"version": "1.0.0",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"blockies": "0.0.2",
"bootstrap": "^4.0.0",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.0.5",
"crypto-js": "^3.1.9-1",
"css-loader": "^0.28.7",
"downloadjs": "^1.4.7",
"eslint": "^5.5.0",
"eslint-plugin-vue": "^4.7.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^3.2.0",
"keccak": "^1.4.0",
"node-sass": "^4.5.3",
"pretty": "^2.0.0",
"randombytes": "^2.0.6",
"remodal": "^1.1.1",
"sass-loader": "^6.0.6",
"secp256k1": "^3.5.0",
"url-loader": "^0.6.2",
"vue": "^2.5.11",
"vue-eslint-parser": "^3.2.2",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-subresource-integrity": "^1.1.0-rc.5",
"worker-loader": "^1.1.0"
},
"license": "MIT",
"main": "index.js",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build:deploy": "npm i --no-save prerender-spa-plugin && cross-env DEPLOY=true npm run build",
"build:stats": "cross-env NODE_ENV=production webpack --json > stats.json",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"lint": "eslint --ext .js,.vue src --fix",
"test": "eslint --ext .js,.vue src"
}
}