-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "kyrics-backend",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"dependencies": {
"@types/jsonwebtoken": "^8.5.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"pm2": "^5.1.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.4",
"sequelize-cli": "^6.2.0",
"sequelize-typescript": "^2.1.0",
"swagger-cli": "^4.0.4",
"swagger-ui-express": "^4.1.6",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/node": "^16.0.0",
"@types/sequelize": "^4.28.9",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.6.2",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.9",
"prettier": "^2.3.2"
},
"scripts": {
"dev": "ts-node src/app.ts",
"build": "tsc",
"test": "npx tsc && nodemon dist/app.js",
"start": "node ./node_modules/pm2/bin/pm2 start ./dist/app.js --name server",
"poststart": "node ./node_modules/pm2/bin/pm2 logs",
"api-docs": "swagger-cli bundle ./src/swagger/openapi.yaml --outfile build/swagger.yaml --type yaml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kyrics/kyrics-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kyrics/kyrics-backend/issues"
},
"homepage": "https://github.com/Kyrics/kyrics-backend#readme"
}