forked from redislabs-training/ru102js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "redisolar",
"version": "1.0.0",
"description": "Example application for Redis University RU102JS course.",
"main": "./src/app.js",
"directories": {
"test": "test"
},
"private": true,
"scripts": {
"dev": "./node_modules/nodemon/bin/nodemon.js",
"load": "node src/utils/data_loader.js --",
"lint": "./node_modules/eslint/bin/eslint.js src tests",
"start": "node ./src/app.js",
"test": "jest --no-colors",
"testdev": "jest --watch"
},
"author": "Redis",
"engines": {
"node": ">=8.9.4"
},
"license": "MIT",
"dependencies": {
"better-config": "^1.2.3",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.0.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"round-to": "^4.0.0",
"shortid": "^2.2.14",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"eslint": "^8.0.0",
"jest": "^27.2.5",
"nodemon": "^2.0.13"
}
}