-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "todo-backend",
"version": "1.0.0",
"description": "A simple todo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only src/index.ts",
"typeorm": "npx ts-node ./node_modules/typeorm/cli.js",
"commit": "git-cz"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mysql": "^2.15.19",
"@types/node": "^16.9.6",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-unused-imports": "^1.1.5",
"git-cz": "^4.7.6",
"prettier": "^2.4.1",
"sequelize-cli": "^6.2.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jsrsasign": "^10.4.1",
"mysql2": "^2.3.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.37",
"typescript": "^4.4.3"
}
}