-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"d-install": "bash create-database.sh",
"s-install": "bash win-install.sh",
"test": "npx tsc && jasmine",
"dev": "nodemon --exec npx ts-node ./src/index.ts",
"clean": "rimraf build/",
"build": "npm run clean && npx tsc",
"start": "npm run build && nodemon build/index.js",
"format": "prettier --write ' src/**/*.{ts,tsx,js,jsx} ' ",
"lint": "eslint . --ext .ts",
"t-help": " bash read.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"bcrypt": "^5.1.0",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^10.0.0",
"express-rate-limit": "^6.6.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"supertest": "^6.1.6"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/jasmine": "^3.10.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.12",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"fs-extra": "^10.1.0",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}