-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.75 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.75 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
{
"name": "sol-chive-psql",
"version": "1.0.0",
"description": "Solution Archive is an open source application that allows user to archive an important problems and their solutions, that will help developers for incoming interview preparation.",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"start": "cross-env NODE_ENV=production node dist/app.js",
"dev": "cross-env NODE_ENV=development nodemon --files src/app.ts",
"lint": "eslint ./src . --ext .ts",
"lint-fix": "eslint ./src . --ext .ts --fix",
"create-db": "node ./dist/queries/create-db.js",
"create-db-dev": "ts-node ./src/queries/create-db.ts",
"create-tables": "node ./dist/queries/create-tables.js",
"create-tables-dev": "ts-node ./src/queries/create-tables.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IslamGoher/Sol-Chive-psql.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IslamGoher/Sol-Chive-psql/issues"
},
"homepage": "https://github.com/IslamGoher/Sol-Chive-psql#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.9",
"@types/pg": "^8.6.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"googleapis": "^97.0.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"swagger-ui-express": "^4.1.6"
}
}