-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "shortlink",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node ./build/index.js",
"dev": "ts-node-dev ./src/index.ts",
"test": "ts-node-dev ./tests/index.ts",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --fix --ext .ts ./src"
},
"dependencies": {
"@prisma/client": "^3.15.2",
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"prisma": "^3.15.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@eslint/create-config": "^0.2.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"prettier": "^2.7.1"
}
}