-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 987 Bytes
/
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
{
"name": "resourcebase",
"version": "1.0.0",
"description": "Aplicación de resourceBase",
"main": "dist/index.js",
"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 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andes-Scholar/resourceBase.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Andes-Scholar/resourceBase/issues"
},
"homepage": "https://github.com/Andes-Scholar/resourceBase#readme",
"dependencies": {
"@types/mongoose": "^5.7.36",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.10.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"ts-node": "^9.0.0",
"tsc": "^1.20150623.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}