-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.82 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "gamevix",
"description": "GameVix helps you to swap your used video game discs with others, hassle free. Spend much LESS 💰 , play much MOAR 🎮 !",
"private": true,
"version": "0.0.1",
"keywords": [],
"dependencies": {
"@nuxtjs/axios": "^3.1.2",
"@nuxtjs/component-cache": "^1.1.1",
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/proxy": "^1.1.4",
"@nuxtjs/pwa": "^2.0.5",
"ajv": "^6.1.1",
"async": "^2.5.0",
"axios": "^0.19.0",
"babel-plugin-lodash": "^3.3.2",
"babel-polyfill": "^6.26.0",
"cache-manager": "^2.4.0",
"cache-manager-mongodb": "onlyurei/node-cache-manager-mongodb",
"cache-manager-redis-store": "^1.2.0",
"connect-redis": "^3.3.0",
"db-migrate": "^0.10.2",
"db-migrate-mongodb": "^1.3.0",
"duplicate-package-checker-webpack-plugin": "^2.0.2",
"es6-promisify": "^6.0.0",
"esm": "^3.2.25",
"express-rate-limit": "^2.11.0",
"helmet": "^3.9.0",
"igdb-api-node": "^4.0.3",
"json-mapper": "0.0.12",
"lodash": "^4.17.4",
"lru-cache": "^4.1.1",
"mailgen": "^2.0.2",
"node-summary": "^1.2.0",
"node-vibrant": "^3.0.0-alpha.2",
"nodemailer": "^4.1.0",
"nuxt": "^1.3.0",
"nuxt-imagemin": "^1.0.0",
"rate-limit-redis": "^1.5.0",
"redirect-ssl": "^1.3.0",
"redis": "^2.8.0",
"sails": "^1.0.0-44",
"sails-auth": "onlyurei/sails-auth",
"sails-hook-orm": "^2.0.0-16",
"sails-hook-sockets": "^1.4.0",
"sails-mongo": "^1.0.0-9",
"shippo": "^1.3.1",
"striptags": "^3.1.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uuid": "^3.2.1",
"vue": "^2.5.9",
"vue-form-generator": "^2.0.0",
"vue-lazyload": "^1.3.2",
"vue-social-sharing": "^2.3.3",
"vue-star-rating": "~1.5.1",
"vue-template-compiler": "^2.5.9",
"vue-youtube-embed": "^2.1.3",
"vuetify": "~1.0.19",
"vuex": "^3.0.1",
"webpack": "^3.3.0"
},
"devDependencies": {
"eslint": "^4.12.0",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-vue": "^4.0.0-beta.0",
"forever": "^0.15.3",
"husky": "^0.14.3",
"jest": "^20.0.4",
"prettier": "^1.6.1",
"sails-disk": "^1.0.0-11",
"sails-hook-fixtures": "onlyurei/sails-hook-fixtures",
"supertest": "^3.0.0"
},
"scripts": {
"start": "PORT=8080 node --max_old_space_size=400 -r esm app.js",
"dev": "PORT=8080 NODE_ENV=development node -r esm app.js",
"dev:api": "PORT=8080 ./node_modules/.bin/forever -w --watchDirectory api app.js",
"build": "PORT=8080 NODE_ENV=production ./node_modules/.bin/nuxt build",
"prod": "npm run build && PORT=8080 NODE_ENV=production npm start",
"db:migrate": "npm run db:migrate:up",
"db:migrate:up": "./node_modules/.bin/db-migrate up",
"db:migrate:down": "./node_modules/.bin/db-migrate down",
"deploy": "npm run build && npm run db:migrate:up -- -e prod && cf install-plugin blue-green-deploy -f -r CF-Community && cf blue-green-deploy gamevix && cf stop gamevix-old",
"reinstall": "rm -rf node_modules && npm install",
"relock": "rm -rf node_modules package-lock.json && npm install",
"lint": "./node_modules/.bin/eslint . --ext .js,.vue",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"debug": "node debug app.js",
"precommit": "npm run lint"
},
"main": "app.js",
"esm": {
"cjs": true
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/jest-setup.js",
"testPathIgnorePatterns": [
"/node_modules/",
"test.js"
]
},
"babel": {
"presets": [
[
"vue-app",
{
"targets": {
"browsers": [
"> 1%",
"last 2 major versions",
"not ie <= 11"
],
"uglify": true
},
"useBuiltIns": true
}
]
]
},
"engines": {
"node": "12.8.1"
}
}