-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 KB
/
package.json
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
{
"name": "linklite",
"version": "1.0.0",
"description": "Yet Another URL Shortening Service",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production node dist/server.js",
"dev": "NODE_ENV=dev nodemon src/server.ts",
"test": "NODE_ENV=test jest --runInBand",
"test-cover": "NODE_ENV=test jest --runInBand --verbose --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/james5418/LinkLite.git"
},
"keywords": [],
"author": "james5418",
"license": "ISC",
"bugs": {
"url": "https://github.com/james5418/LinkLite/issues"
},
"homepage": "https://github.com/james5418/LinkLite#readme",
"dependencies": {
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"mongoose": "^6.8.3",
"morgan": "^1.10.0",
"nanoid": "^3.3.4",
"redis": "^4.5.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.6",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}