-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.45 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
55
56
57
{
"name": "22-s-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UXMUnderGraduate/22-S-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UXMUnderGraduate/22-S-Backend/issues"
},
"homepage": "https://github.com/UXMUnderGraduate/22-S-Backend#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"content-disposition": "^0.5.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"express": "^4.18.1",
"form-data": "^4.0.0",
"ipfs-http-client": "^56.0.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^6.21.3",
"web3": "^1.7.4"
},
"devDependencies": {
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "2.7.1"
},
"nodemonConfig": {
"events": {
"restart": "rmdir \"%USERPROFILE%\\.jsipfs\\repo.lock\"",
"start": "rmdir \"%USERPROFILE%\\.jsipfs\\repo.lock\"",
"crash": "rmdir \"%USERPROFILE%\\.jsipfs\\repo.lock\""
},
"ignore": [
"bloom.json"
]
}
}