-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "type-graphql-proj",
"version": "1.0.0",
"private": true,
"description": "Project to test using the Type-GraphQL framework from creating a TypeScript GraphQL server implementation",
"main": "index.ts",
"scripts": {
"start": "npm run-script build && node 'dist/index.js'",
"build": "rm -rf ./dist && mkdir dist && tsc -p . && cp secrets.json dist",
"start:dev": "npm run build:dev",
"build:dev": "nodemon 'index.ts' --exec 'ts-node' index.ts -e ts",
"test": "nodemon --exec 'jest --config ./jest.config.js' -e ts"
},
"keywords": [
"Type-GraphQL",
"TypeScript",
"JavaScript",
"Apollo-Server",
"GraphQL"
],
"author": "Curtis Menmuir",
"license": "MIT",
"dependencies": {
"@types/graphql": "^14.2.0",
"@types/jest": "^24.0.11",
"apollo-server": "^2.4.8",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.7.1",
"babel-preset-env": "^1.7.0",
"class-transformer": "^0.2.0",
"graphql": "^14.2.1",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.4",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^1.18.11",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "^0.13.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"type-graphql": "^0.17.1",
"typescript": "^3.4.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.3.2"
}
}