-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "nodejs-practice-project-",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"node-cron": "^3.0.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"request": "^2.88.2",
"sequelize": "^6.6.2"
},
"devDependencies": {
"jest": "^29.6.2",
"nodemon": "^2.0.7",
"sequelize-cli": "^6.2.0"
},
"scripts": {
"test": "jest",
"dev": "nodemon main.js",
"start": "node main.js"
},
"jest": {
"testMatch": [
"<rootDir>/_tests_/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/namwebdev/nodejs-practice.git"
},
"author": "ZynKy",
"license": "ISC",
"bugs": {
"url": "https://github.com/namwebdev/nodejs-practice/issues"
},
"homepage": "https://github.com/namwebdev/nodejs-practice#readme"
}