-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "mysecondpj",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.14",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.10",
"@types/pg": "^8.6.5",
"dotenv": "^16.0.3",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.3"
},
"scripts": {
"build": "npx tsc",
"start": "node build/src/server.js",
"jasmine": "npx tsc && jasmine",
"jasmineinit": "jasmine init",
"test": "set ENV=test&& db-migrate --env test up&& npx tsc && jasmine && db-migrate down:test",
"dev-server": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node ./build/src/server.js\"",
"db-migrate-up": "db-migrate up",
"db-migrate-down": "db-migrate down"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/supertest": "^2.0.12",
"bcrypt": "^5.1.0",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"express": "^4.18.2",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.8.0",
"postgres": "^3.3.2"
}
}