-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
32 lines (32 loc) · 970 Bytes
/
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
{
"name": "nuxt-web3-boilerplate",
"version": "1.0.0",
"description": "Nuxt.js and web3 template project",
"author": "pyyding <[email protected]>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore --ignore-pattern migrations/ --ignore-pattern test/ .",
"precommit": "npm run lint"
},
"dependencies": {
"nuxt": "^1.0.0",
"web3": "^1.0.0-beta.34",
"web3-eth-abi": "^1.0.0-beta.34",
"websocket": "^1.0.26"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-vue": "^4.5.0",
"prettier": "^1.12.1"
}
}