-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "sonar",
"version": "1.0.0",
"description": "Project Management Web Application",
"main": "dist/index.js",
"repository": "https://github.com/vylpes/sonar.git",
"author": "Ethan Lane <ethan@vylpes.com>",
"license": "MIT",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/http-errors": "^1.8.0",
"@types/morgan": "^1.9.2",
"@types/node": "^15.6.0",
"@types/uuid": "^8.3.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"core-js": "^3.12.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"http-errors": "^1.8.0",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"pug": "^3.0.2",
"reflect-metadata": "^0.1.13",
"reflection": "^0.0.1",
"tsyringe": "^4.5.0",
"typeorm": "^0.2.37",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"init": "node dist/init.js",
"lint": "eslint",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@types/eslint": "^7.2.10",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"jest": "^26.6.3",
"jest-mock-extended": "^2.0.4",
"ts-jest": "^26.5.6",
"ts-mockito": "^2.6.1"
}
}