-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.84 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
59
60
{
"name": "shop.einfachiota.de",
"version": "1.0.0",
"description": "Landinpgae einfachIOTA Shop - Magazine presale now!",
"repository": "einfachIOTA/store",
"author": "huhn <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"fix-lint": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"generate:gh-pages": "cross-env DEPLOY_ENV=GH_PAGES nuxt generate",
"deploy:gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup",
"deploy": "npm run generate:gh-pages && npm run deploy:gh-pages"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@tangle-frost/iota-qr-lib": "^0.0.9",
"dotenv": "^8.2.0",
"element-ui": "^2.4.11",
"express": "^4.16.4",
"node-sass": "^4.13.1",
"nuxt": "^2.0.0",
"nuxt-i18n": "^6.4.1",
"sass-loader": "^8.0.0",
"socket.io-client": "^2.3.0",
"vue-iota-payment": "0.0.31",
"vue-paypal-checkout": "^3.2.0",
"vue-scrollto": "^2.17.1",
"vue-socket.io-extended": "^4.0.0"
},
"devDependencies": {
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^2.6.0",
"lint-staged": "^8.2.1",
"nodemon": "^1.18.9",
"prettier": "^1.16.4",
"push-dir": "^0.4.1"
}
}