-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1013 Bytes
/
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
{
"name": "nodejs-simple-crud",
"version": "1.0.0",
"description": "project for mentoring nodejs & reactjs",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nodejs",
"crud"
],
"author": "rangga darmajati",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"connect-timeout": "^1.9.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"http-status-codes": "^2.2.0",
"indicative": "^7.4.4",
"jimp": "^0.16.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"path": "^0.12.7",
"sequelize": "^6.20.1",
"sequelize-paginate": "^1.1.6",
"sequelize-paper-trail": "^3.0.1",
"sequelize-soft-delete": "^1.1.0",
"tmp": "^0.2.1",
"url-parse": "^1.5.10",
"uuid": "^8.3.2"
}
}