-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "baby_app",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node -r dotenv/config dist/app.js",
"build:dev": "webpack --mode=development && ts-node dev-helpers/create-package.ts",
"build:prod": "webpack --mode=production && ts-node dev-helpers/create-package.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .ts, app/app.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mk1020/baby_app.git"
},
"author": "Mikhail Kovalchuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/mk1020/baby_app/issues"
},
"homepage": "https://github.com/mk1020/baby_app#readme",
"dependencies": {
"fastify": "^3.15.0",
"fastify-postgres": "^3.5.0",
"google-auth-library": "^7.1.2",
"nodemailer": "^6.6.1",
"pg": "^8.6.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^15.0.0",
"@types/nodemailer": "^6.4.2",
"@types/pg": "^7.14.11",
"@types/pg-format": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"dotenv": "^9.0.1",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"ts-loader": "^9.2.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
}
}