-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
{
"name": "js-crash-course",
"version": "0.0.1",
"description": "Node.js Crash Course for Redis",
"main": "src/server.js",
"scripts": {
"auth": "node ./src/auth.js",
"dev": "node ./node_modules/nodemon/bin/nodemon.js",
"lint": "node ./node_modules/eslint/bin/eslint.js src",
"load": "node src/utils/dataloader.js --",
"checkingenerator": "node ./src/checkingenerator.js",
"checkingroupprocessor": "node ./src/checkingroupprocessor.js",
"checkinprocessor": "node ./src/checkinprocessor.js --",
"checkinreceiver": "node ./src/checkinreceiver.js",
"start": "node ./src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redislabs-training/node-js-crash-course.git"
},
"keywords": [
"Redis"
],
"author": "Redis",
"license": "MIT",
"bugs": {
"url": "https://github.com/redislabs-training/node-js-crash-course/issues"
},
"homepage": "https://github.com/redislabs-training/node-js-crash-course#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"better-config": "^1.2.3",
"connect-redis": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.10.0",
"ioredis": "^4.22.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7"
}
}