-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "store_front_api",
"version": "1.0.0",
"description": "an api for small e-commerce",
"main": "./src/index.js",
"scripts": {
"start": "ts-node ./src/index.ts",
"start:watch": "ts-node-dev ./src/index.ts",
"start:prod": "npm run build && node dist/index.js",
"build": "rm -rf ./dist/* && tsc --build",
"migrate:up": "db-migrate up",
"migrate:down": "db-migrate down",
"migrate:reset": "db-migrate reset",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"component": "./component.sh",
"test": "export ENV=test PORT=3001 && db-migrate up --env test > /dev/null && jasmine-ts && db-migrate reset --env test > /dev/null"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5",
"winston": "^3.4.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.9",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.17",
"@types/pg": "^7.14.7",
"@types/sequelize": "^4.28.11",
"@types/jasmine": "^3.10.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"sequelize-cli": "^6.3.0",
"supertest": "^6.1.6",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9"
},
"author": "Abdulrahman",
"license": "ISC"
}