-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "server",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.11",
"@types/graphql": "^14.0.3",
"@types/node": "^10.12.0",
"@types/nodemailer": "^4.6.5",
"@types/nodemailer-direct-transport": "^1.0.31",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/uuid": "^3.4.4",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"npm-run-all": "^4.1.3",
"ts-node": "7.0.1",
"typescript": "3.1.3",
"typescript-eslint-parser": "^20.0.0"
},
"dependencies": {
"apollo-server-express": "^2.1.0",
"argon2": "^0.19.3",
"express": "^4.16.4",
"express-session": "^1.15.6",
"graphql": "^14.0.2",
"nodemailer": "^4.7.0",
"pg": "^7.3.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.8",
"uuid": "^3.3.2"
},
"scripts": {
"build-ts": "tsc",
"postinstall": "npm run build-ts",
"start": "npm run serve",
"serve": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts --ext ts"
}
}