-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 904 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
{
"name": "seng365-2024-assignment1",
"version": "0.0.1",
"description": "Petition site server API for SENG365 Assignment 1",
"main": "dist/server.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Harrison Parkes",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mysql2": "^2.3.3",
"mz": "^2.7.0",
"winston": "^3.8.2",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"bcrypt": "^5.0.1",
"humps": "^2.0.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/mz": "^2.7.4",
"@types/node": "^18.11.9",
"@types/bcrypt": "^5.0.2",
"@types/humps": "^2.0.6",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
}
}