-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "postgres-with-node",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "nodemon src/index.ts",
"testdb-reset": "db-migrate reset --config ./database.json --e test",
"testdb-up": "db-migrate --config ./database.json --e test up",
"tsc": "tsc",
"devdb-up": "db-migrate up --config ./database.json --e dev",
"devdb-reset": "db-migrate reset --config ./database.json --e dev",
"lint": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc {,!(node_modules)/**/}*.ts --write"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cross-env": "^7.0.3",
"db-migrate": "^1.0.0-beta.16",
"db-migrate-pg": "^1.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"pg": "^8.5.1",
"supertest": "^6.1.6",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/jasmine": "^3.9.1",
"@types/jsonwebtoken": "^8.5.5",
"@types/pg": "^7.14.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine": "^3.6.4",
"jasmine-spec-reporter": "^6.0.0",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9"
}
}