-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "happy-backend",
"version": "2.0.0",
"engines": {
"node": "15.x"
},
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"typeorm": "tsnd ./node_modules/typeorm/cli.js",
"dev": "tsnd --transpile-only --respawn --ignore-watch node_modules src/server.ts",
"pretest": "SET NODE_ENV=test&&tsnd ./node_modules/typeorm/cli.js migration:run --config ./ormconfig.js",
"test": "SET NODE_ENV=test&&jest",
"posttest": "SET NODE_ENV=test&&tsnd ./node_modules/typeorm/cli.js migration:revert --config ./ormconfig.js"
},
"dependencies": {
"@google-cloud/storage": "^5.3.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.1.1",
"jest": "^26.6.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nodemailer": "^6.4.14",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.0",
"supertest": "^5.0.0",
"typeorm": "^0.2.32",
"yup": "^0.29.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/multer": "^1.4.4",
"@types/node": "^14.14.41",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^2.0.10",
"@types/yup": "^0.29.8",
"ts-jest": "^26.4.1",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
}
}