-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "server",
"version": "0.0.1",
"description": "TypeORM/GraphQl/Postgres/Node/Express.",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/graphql": "^14.0.7",
"@types/node": "^11.9.5",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3",
"ts-node": "8.0.2",
"typescript": "3.3.3333"
},
"dependencies": {
"apollo-server-express": "^2.14.2",
"bcryptjs": "^2.4.3",
"cli": "^1.0.1",
"connect-redis": "^4.0.1",
"cryptiles": "^4.1.3",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"graphql": "^14.1.1",
"handlebars": "^4.7.7",
"hawk": "^7.0.10",
"hoek": "^6.1.2",
"pg": "^7.3.0",
"redis": "^3.1.1",
"reflect-metadata": "^0.1.10",
"request": "^2.88.0",
"typeorm": "0.2.25",
"uglify-js": "^3.4.9"
},
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"build": "rimraf ./dist && tsc"
}
}