forked from evrimagaci/periodum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "periodium",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development NUXT_HOST=0.0.0.0 nodemon server/index.js --watch server",
"build": "NODE_ENV=production nuxt build",
"heroku-postbuild": "npm run build",
"start_": "nuxt start",
"start": "cross-env pm2-runtime start ecosystem.config.js --env production",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.13.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"connect-timeout": "^1.9.0",
"consola": "^2.15.3",
"core-js": "^3.9.1",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"element-ui": "^2.15.1",
"express": "^4.17.1",
"fuse.js": "^6.4.6",
"helmet": "^4.4.1",
"install": "^0.13.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"mobile-detect": "^1.4.5",
"mysql2": "^2.2.5",
"normalize.css": "^8.0.1",
"npm": "^7.9.0",
"nuxt": "^2.15.3",
"pm2": "^4.5.5",
"sequelize": "^6.6.1",
"shrink-ray-current": "^4.1.2",
"smiles-drawer": "^1.2.0",
"swiper": "^5.4.5",
"uuid": "^3.4.0",
"v-tooltip": "^2.1.3",
"vue": "^2.6.12",
"vue-awesome-swiper": "^4.1.1",
"vue-gtag": "^1.16.1",
"vue-slider-component": "^3.2.11",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.7.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^21.0.0"
}
}