Add package.json
This commit is contained in:
parent
688c43e6b6
commit
38b317298e
2 changed files with 3323 additions and 0 deletions
3283
package-lock.json
generated
Normal file
3283
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
40
package.json
Normal file
40
package.json
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"name": "hensei-api",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "dist/server.js",
|
||||
"scripts": {
|
||||
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
|
||||
"build": "tsc",
|
||||
"prestart": "npm run build",
|
||||
"start": "nodemon dist/server.js",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@types/body-parser": "^1.19.0",
|
||||
"@types/cors": "^2.8.7",
|
||||
"@types/helmet": "0.0.48",
|
||||
"@types/knex": "^0.16.1",
|
||||
"@types/morgan": "^1.9.1",
|
||||
"body-parser": "^1.19.0",
|
||||
"cors": "^2.8.5",
|
||||
"express": "^4.17.1",
|
||||
"helmet": "^4.1.1",
|
||||
"morgan": "^1.10.0",
|
||||
"pg": "^8.3.3",
|
||||
"sequelize": "^6.3.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/express": "^4.17.8",
|
||||
"@types/node": "^14.10.0",
|
||||
"@types/pg": "^7.14.4",
|
||||
"@types/randomstring": "^1.1.6",
|
||||
"dotenv": "^8.2.0",
|
||||
"nodemon": "^2.0.4",
|
||||
"randomstring": "^1.1.5",
|
||||
"tslint": "^6.1.3",
|
||||
"typescript": "^4.0.2"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue