-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (59 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (59 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "santababy",
"version": "1.0.0",
"description": "internal gift redemption system",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"start": "node build/src/index.js",
"swagger": "tsoa spec"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/careylzh/santababy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/careylzh/santababy/issues"
},
"homepage": "https://github.com/careylzh/santababy#readme",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/faker": "^5.5.6",
"@types/jest": "^26.0.23",
"@types/morgan": "^1.9.2",
"@types/node": "^15.12.4",
"@types/swagger-ui-express": "^4.1.2",
"concurrently": "^6.2.0",
"faker": "^5.5.3",
"jest": "^27.0.5",
"nodemon": "^2.0.7",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@types/cors": "^2.8.10",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.8.0",
"typeorm": "^0.2.34"
}
}