-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.28 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.28 KB
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
{
"name": "bet-advizor-bot",
"version": "1.2.1",
"description": "Bet Advizor Bot System",
"author": "Andrey Khataev",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development PORT=8000 nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"db:drop": "node_modules/.bin/sequelize db:drop --url $DATABASE_URL",
"db:create": "node_modules/.bin/sequelize db:create --url $DATABASE_URL",
"db:migrate": "node_modules/.bin/sequelize db:migrate --url $DATABASE_URL",
"db:migrate:undo": "node_modules/.bin/sequelize db:migrate:undo --url $DATABASE_URL",
"db:migrate:undo:all": "node_modules/.bin/sequelize db:migrate:undo:all --url $DATABASE_URL",
"db:seed:all": "node_modules/.bin/sequelize db:seed:all --url $DATABASE_URL",
"db:seed:undo:all": "node_modules/.bin/sequelize db:seed:undo:all --url $DATABASE_URL"
},
"dependencies": {
"@nuxtjs/pwa": "^2.6.0",
"axios": "^0.18.0",
"bcrypt": "^3.0.5",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"convict": "^4.4.1",
"cookieparser": "^0.1.0",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"js-cookie": "^2.2.0",
"luxon": "^1.12.1",
"node-telegram-bot-api": "^0.30.0",
"nuxt": "^2.6.2",
"passport": "^0.4.0",
"pg": "^7.9.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"sequelize": "^5.7.6",
"sequelize-cli": "^5.4.0",
"vue-emoji-picker": "^1.0.1",
"vuex-persistedstate": "^2.5.4"
},
"devDependencies": {
"nodemon": "^1.18.9",
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-standard": ">=12.0.0",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-vue": "^5.2.2",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4"
}
}