-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "api-node-skeleton",
"version": "1.0.0",
"description": "",
"main": "src/start.ts",
"scripts": {
"prebuild": "rm -rf dist/* && tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc && cp -rf package.json dist/package.json",
"prestart": "npm run build",
"start": "ts-node .",
"serve": "nodemon src/start.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hummerino/api-node-skeleton.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hummerino/api-node-skeleton/issues"
},
"homepage": "https://github.com/hummerino/api-node-skeleton#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.38",
"nodemon": "^2.0.14",
"ts-node": "^9.1.1",
"tsc": "^1.20150623.0",
"tslint": "^6.1.3",
"typescript": "^4.7.2"
},
"dependencies": {
"@types/cors": "^2.8.8",
"@types/mongodb": "^4.0.7",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"helmet": "^4.1.1",
"mongodb": "^4.6.0",
"rxjs": "^6.6.3"
}
}