-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 978 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
{
"name": "seng365-2022-assignment1-skeleton-project",
"version": "0.0.1",
"description": "Skeleton project for use by seng365 students for the first assignment",
"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": "Morgan English",
"license": "ISC",
"dependencies": {
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-query-parser": "^1.3.2",
"moment": "^2.29.2",
"mysql2": "^2.3.2",
"mz": "^2.7.0",
"rand-token": "^1.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/mz": "^2.7.4",
"@types/node": "^16.11.6",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}