forked from velizarn/redis-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.27 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
{
"name": "redis-demo",
"version": "0.0.1",
"description": "A sample Redis demo app using node.js",
"author": {
"name": "Velizar Nenov",
"url": "https://velizarn.github.io/"
},
"engines": {
"node": "12.19.0"
},
"main": "src/web.js",
"scripts": {
"heroku-prebuild": "echo This runs before Heroku installs your dependencies.",
"heroku-postbuild": "echo This runs afterwards.",
"lint": "eslint --ext .js,.json,.jsx . --fix",
"start": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 src/web.js",
"start:local": "nf start",
"stop:all": "taskkill /f /im node.exe",
"stop:all:linux": "killall -g node",
"test": "cross-env NODE_ENV=test mocha --timeout 10000 --exit",
"test:dev": "cross-env NODE_ENV=test mocha --timeout 15000 --exit",
"update:dev": "rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force && npm install --ignore-scripts && npm dedupe && npm audit fix",
"watch": "nodemon --optimize_for_size --max_old_space_size=920 --gc_interval=100 src/web.js",
"watch:cluster": "nodemon --optimize_for_size --max_old_space_size=920 --gc_interval=100 src/web-cl.js"
},
"dependencies": {
"bluebird": "3.7.2",
"body-parser": "1.19.0",
"compression": "1.7.4",
"connect-redis": "4.0.4",
"dotenv": "8.2.0",
"ejs": "3.1.5",
"express": "4.17.1",
"express-session": "1.17.1",
"express-validator": "6.6.1",
"helmet": "3.23.3",
"heroku-logger": "0.3.3",
"redis": "3.0.2",
"request": "2.88.2",
"request-promise": "4.2.6",
"throng": "4.0.0"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"chai": "4.2.0",
"chai-http": "4.3.0",
"cross-env": "7.0.2",
"eslint": "7.11.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-security": "1.4.0",
"foreman": "3.0.1",
"mocha": "8.1.3",
"nodemon": "2.0.5",
"prettier": "2.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/velizarn/redis-demo.git"
},
"keywords": [
"node",
"heroku",
"redis",
"cache"
],
"license": "MIT",
"nodemonConfig": {
"ignore": [
"test/*",
"public/*"
],
"verbose": true,
"colours": true
}
}