-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "nodejs-lab-series",
"version": "1.0.0",
"description": "การเรียนรู้ Node.js จากพื้นฐานสู่ขั้นสูง",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"test:watch": "jest --watch",
"lab01": "cd lab01-basic && node app.js",
"lab02": "cd lab02-modules && node app.js",
"lab03": "cd lab03-filesystem && node app.js",
"lab04": "cd lab04-http-server && node server.js",
"lab05": "cd lab05-express && npm start",
"lab06": "cd lab06-middleware && npm start",
"lab07": "cd lab07-database && npm start",
"lab08": "cd lab08-restful-api && npm start",
"lab09": "cd lab09-auth && npm start",
"lab10": "cd lab10-websocket && npm start",
"lab11": "cd lab11-testing && npm test",
"lab12": "cd lab12-microservices && docker-compose up",
"lab13": "cd lab13-performance && npm start",
"lab14": "cd lab14-docker && docker-compose up"
},
"keywords": [
"nodejs",
"javascript",
"express",
"mongodb",
"websocket",
"microservices",
"docker",
"tutorial",
"thai",
"lab"
],
"author": "Node.js Lab Series",
"license": "MIT",
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.7.0"
},
"dependencies": {
"express": "^4.18.2",
"mongoose": "^8.0.0",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"socket.io": "^4.7.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
}
}