-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "minter-calculator-web",
"version": "1.0.0",
"description": "Minter Calculator website",
"author": "shrpne <[email protected]>",
"private": true,
"scripts": {
"prod": "npm run production",
"production": "npm run generate",
"dev": "gulp & nuxt --spa --port=3012",
"build": "gulp once && nuxt build --spa",
"start": "nuxt start --spa --port=3012",
"generate": "gulp once && nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix .",
"precommit": "npm run lint"
},
"dependencies": {
"@nuxtjs/pwa": "^3.0.0-beta.16",
"entity-decode": "^2.0.2",
"from-exponential": "^1.0.0",
"imask": "^5.2.1",
"@minterteam/footer-links": "^3.0.0",
"nuxt": "^2.10.1",
"pretty-num": "^0.3.0",
"vue-autonumeric": "^1.2.6",
"vue-imask": "^5.2.1",
"vuelidate": "^0.7.4"
},
"devDependencies": {
"autoprefixer": "^9.6.5",
"babel-eslint": "^10.0.3",
"beeper": "^2.0.0",
"cross-env": "^6.0.3",
"del": "^5.1.0",
"eslint": "^6.5.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-vue": "^5.2.3",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-clean-css": "^4.2.0",
"gulp-imagemin": "^6.1.1",
"gulp-less": "^4.0.1",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"imagemin-mozjpeg": "^8.0.0",
"postcss-normalize": "^8.0.1"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not Blackberry <= 10"
]
}