-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.55 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
{
"name": "secret-note",
"version": "1.0.0",
"description": "Decentralized Secret Note powered by blockchain",
"scripts": {
"lint": "./node_modules/.bin/eslint ./",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules && cp dist/index.html index.html"
},
"author": "Ken Chen",
"license": "MIT",
"dependencies": {
"base-58": "0.0.1",
"buffer": "^5.0.8",
"element-ui": "^2.0.11",
"ipfs-api": "^17.3.0",
"jsencrypt": "^2.3.1",
"vue": "^2.5.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-component": "^1.1.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.22.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.1.0",
"eslint-config-babel": "^7.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"file-loader": "^1.1.4",
"html-webpack-plugin": "^2.30.1",
"json-loader": "^0.5.7",
"truffle-contract": "^3.0.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"web3": "^0.20.4",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.1"
}
}