-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "back",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_module src/server.ts",
"migrations": "yarn typeorm migration:run",
"start": "yarn typeorm migration:run && tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js"
},
"devDependencies": {
"@types/atob": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"prettier": "^2.1.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/multer": "^1.4.4",
"@types/yup": "^0.29.9",
"atob": "^2.1.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"sqlite3": "^5.0.0",
"ts-node-dev": "^1.0.0",
"typeorm": "^0.2.28",
"typescript": "^4.0.5",
"yup": "^0.29.3"
}
}