-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 788 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 788 Bytes
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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "A simple url shortener.",
"main": "dist/index.js",
"author": "ArthurDev",
"license": "MIT",
"scripts": {
"build": "yarn tsc && cp -r ./src/views/ ./dist/",
"tsc": "tsc",
"dev": "ts-node-dev src/index.ts --transpile-only",
"postinstall": "yarn build",
"start": "node dist/index.js"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"@types/pg": "^8.6.1",
"@types/sqlite3": "^3.1.7",
"tailwindcss": "^2.2.19",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}