-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "shortened-url-api-server",
"version": "1.0.0",
"description": "TypeScript + Mongoose + MongoDB + Express API Server",
"scripts": {
"start": "npm run build && node dist/server.js",
"run-test": "cross-env NODE_ENV=test nodemon",
"build": "swc src -d dist --source-maps --copy-files",
"build:tsc": "tsc && tsc-alias",
"test": "jest --forceExit --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anjeongkyun/shortened-url-api-server-using-node.git"
},
"author": "jeongkyun",
"license": "ISC",
"bugs": {
"url": "https://github.com/anjeongkyun/shortened-url-api-server-using-node/issues"
},
"homepage": "https://github.com/anjeongkyun/shortened-url-api-server-using-node#readme",
"dependencies": {
"@faker-js/faker": "^7.6.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"express": "^4.17.1",
"mongoose": "^7.0.2",
"nodemon": "^2.0.20",
"swc": "^1.0.11",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.13",
"@types/jest": "27.4.x",
"jest": "27.4.x",
"ts-jest": "^27.1.4"
}
}