-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 968 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 968 Bytes
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
{
"name": "api-backend",
"version": "1.0.0",
"description": "uhm stuff",
"main": "server.js",
"scripts": {
"test": "mocha ./test --recursive --exit",
"start": "node server",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntua/SoftEng22-34.git"
},
"keywords": [
"surveys"
],
"author": "Altan Avtzi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ntua/SoftEng22-34/issues"
},
"homepage": "https://github.com/ntua/SoftEng22-34#readme",
"devDependencies": {
"nodemon": "^2.0.20"
},
"dependencies": {
"@json2csv/plainjs": "^6.1.2",
"axios": "^1.3.2",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"busboy": "^1.6.0",
"chai": "^4.3.7",
"custom-env": "^2.0.1",
"express": "^4.18.2",
"form-data": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.2.0",
"mysql2": "^2.3.3",
"sequelize": "^6.28.0"
}
}