-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "backend-api-storefront-app",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"tsc": "tsc",
"build": "npx tsc",
"start": "nodemon src/server.ts",
"jasmine": "jasmine",
"test": "export ENV=test && npm run build && db-migrate --env test reset && db-migrate --env test up && npm run jasmine && db-migrate --env test reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbdelrahmanSherf/backend-API-storefront-app.git"
},
"keywords": [],
"author": "Abdelrahman Mostafa",
"license": "ISC",
"bugs": {
"url": "https://github.com/AbdelrahmanSherf/backend-API-storefront-app/issues"
},
"homepage": "https://github.com/AbdelrahmanSherf/backend-API-storefront-app#readme",
"dependencies": {
"express": "^4.17.2",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jasmine": "^3.10.3",
"@types/jsonwebtoken": "^8.5.7",
"@types/pg": "^8.6.4",
"@types/supertest": "^2.0.11",
"bcrypt": "^5.0.1",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^13.0.1",
"jasmine": "^4.0.2",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}