-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "voluntapp-api",
"version": "0.0.1",
"license": "MIT",
"description": "Volunteer management platform API",
"devDependencies": {
"@types/express": "^4.11.1",
"@types/node": "^6.0.110",
"@types/node-fetch": "^1.6.9",
"@types/uuid": "^3.4.3",
"@types/yup": "^0.24.3",
"gql2ts": "^1.8.0",
"nodemon": "^1.17.4",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0"
},
"dependencies": {
"@gql2ts/from-schema": "^1.8.0",
"casual": "^1.5.19",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-import": "^0.5.2",
"graphql-request": "^1.6.0",
"graphql-tools": "^3.0.1",
"graphql-yoga": "^1.13.1",
"node-fetch": "^2.1.2",
"pg": "^7.3.0",
"reflect-metadata": "^0.1.12",
"ts-node": "^6.0.3",
"typeorm": "0.2.5",
"typescript": "^2.8.3",
"uuid": "^3.2.1",
"yup": "^0.24.1"
},
"scripts": {
"start": "NODE_ENV=prod ts-node src/index.ts",
"dev": "NODE_ENV=development nodemon --exec ts-node src/index.ts",
"gen-schema-types": "ts-node src/scripts/createTypes.ts"
}
}