-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "simple-notes-api",
"version": "1.0.0",
"description": "Simple Notes API from Dicoding Backend Development Course but with Typescript",
"main": "index.js",
"scripts": {
"start": "npx tsc -w",
"dev": "npm run lint && npx nodemon",
"clean-install": "rm -rf node_modules && npm install",
"lint": "eslint --fix --ext .ts src/",
"build": "tsc",
"migrate": "node-pg-migrate"
},
"keywords": [],
"author": "Dimas Eka Putra",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@types/pg": "^8.11.1",
"dotenv": "^16.4.1",
"joi": "^17.12.1",
"nanoid": "^3.3.6",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.3"
}
}