This repository has been archived by the owner on Jul 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
{
"name": "sunrinlife_template",
"version": "0.0.1",
"description": "REST API for SunrinLife",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node src/index.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sunrinlifeteam/Sunrinlife_Template.git"
},
"author": "SunrinLifeTeam",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sunrinlifeteam/Sunrinlife_Template/issues"
},
"homepage": "https://github.com/Sunrinlifeteam/Sunrinlife_Template#readme",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/babel__core": "^7.1.18",
"@types/babel__traverse": "^7.14.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.4.0",
"@types/morgan": "^1.9.3",
"@types/node": "^8.0.29",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-eslint": "^10.1.0",
"dotenv": "^14.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^3.3.0",
"typescript": ">=3.8"
},
"dependencies": {
"@decorators/di": "^1.0.3",
"@decorators/express": "^2.6.0",
"body-parser": "^1.19.1",
"celebrate": "^15.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.2",
"helmet": "^5.0.2",
"morgan": "^1.10.0",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.41"
}
}