-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
56
57
58
59
60
61
62
63
{
"name": "baba-spinasie-server",
"version": "1.0.0",
"description": "This repo contains the server side project for the baba-spinasie web-app",
"main": "./dist/app.js",
"scripts": {
"start:dist": "nodemon ./dist/app.js",
"start:dev": "tsnd --respawn --no-notify ./src/app.ts",
"build": "rimraf ./dist && tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RiaanLaubscher/baba-spinasie-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RiaanLaubscher/baba-spinasie-server/issues"
},
"homepage": "https://github.com/RiaanLaubscher/baba-spinasie-server#readme",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"apollo-server-express": "^2.16.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-custom-types": "^1.6.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.0.0-rc.3",
"typeorm": "^0.2.26"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.23",
"@types/validator": "^13.1.0",
"apollo": "^2.30.1",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.0.0-pre.52",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
},
"_moduleAliases": {
"@src": "src",
"@entity": "src/entity",
"@modules": "src/graphql/modules",
"@helpers": "src/helpers"
}
}