-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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": "bugtracker-backend-js",
"version": "1.0.0",
"description": "Backend written in JavaScript for a bug tracking system.",
"type": "commonjs",
"scripts": {
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --setupFiles dotenv/config --watch --detectOpenHandles",
"build:watch": "tsc --watch",
"run:watch": "nodemon -r dotenv/config dist/server.js --watch dist",
"start": "NODE_ENV=development npm-run-all --parallel build:watch run:watch",
"typeorm": "typeorm-ts-node-commonjs"
},
"author": "Samuel Guebo",
"license": "MIT",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.21.1",
"express-validator": "^6.14.2",
"first-run": "^3.0.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.19.2",
"mysql2": "^3.11.3",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.5",
"typeorm": "^0.3.15",
"typeorm-extension": "^2.2.13"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"@types/source-map-support": "^0.5.6",
"@types/supertest": "^2.0.12",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sqlite3": "^5.1.5",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "10.7.0",
"typescript": "4.5.2"
}
}