-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "academia-online",
"version": "1.0.0",
"description": "API GraphQL Academia Online",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"build": "tsc -p . && ncp src/schema build/schema",
"start:dev": "npm run build:dev",
"build:dev": "nodemon \"src/server.ts\" --exec \"ts-node\" src/server.ts -e ts,json,graphql"
},
"author": "Anartz Mugika Ledo <[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.6.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^14.4.1",
"graphql-depth-limit": "^1.1.0",
"graphql-import-node": "0.0.4",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-tools": "^4.0.5",
"http": "0.0.0",
"lodash": "^4.17.11",
"ncp": "^2.0.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/graphql": "^14.2.2",
"@types/graphql-depth-limit": "^1.1.2",
"@types/lodash": "^4.14.135",
"@types/node": "^12.0.10",
"nodemon": "^1.19.4",
"ts-node": "^8.5.0"
}
}