forked from amand33p/bug-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
{
"name": "bug-tracker-pern-ts",
"version": "1.0.0",
"description": "Made by amand33p",
"scripts": {
"start": "node ./build/server.js",
"build": "rm -rf ./build && tsc -p ./",
"dev": "cross-env NODE_ENV=test ts-node-dev --respawn ./src/server.ts",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"lint": "eslint --ext .ts ."
},
"author": "Amandeep S",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/http-errors": "^1.8.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"http-errors": "^1.7.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29"
}
}