-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "stock-managemente",
"version": "1.0.0",
"description": "Gestión de almacén en tiempo real",
"main": "build/app.js",
"scripts": {
"start": "node build/app.js",
"build": "npx tsc -p . && ncp src/schema build/schema",
"dev": "nodemon \"src/app.ts\" --exec \"ts-node\" \"src/app.ts\" -e ts,graphql,json",
"publish": "npm run build && npx vercel --prod"
},
"keywords": [
"graphql-from-scratch",
"traffic",
"json",
"dgt"
],
"homepage": "https://stock-management-graphql.herokuapp.com/",
"author": "Anartz Mugika Ledo <[email protected]> (anartz-mugika.com)",
"license": "MIT",
"dependencies": {
"@graphql-tools/merge": "^6.2.14",
"apollo-server-express": "^2.24.0",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-depth-limit": "^1.1.0",
"graphql-import-node": "^0.0.4",
"graphql-playground-middleware-express": "^1.7.22",
"graphql-tools": "^7.0.5",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongodb": "^3.6.9",
"ncp": "^2.0.0",
"node-machine-id": "^1.1.12",
"subscriptions-transport-ws": "^0.9.18",
"typescript": "^4.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/graphql": "^14.5.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongodb": "^3.6.17",
"@types/node": "^15.6.2",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0"
}
}