-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 952 Bytes
/
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
{
"name": "ilend-products-service",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "npm run clean && tsc",
"clean": "rimraf dist/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/federation": "^0.16.5",
"apollo-datasource": "^0.7.1",
"apollo-server-caching": "^0.5.1",
"apollo-server-express": "^2.14.3",
"axios": "^0.19.2",
"express": "^4.17.1",
"graphql": "~15.0.0",
"graphql-scalars": "^1.1.5",
"graphql-tools": "^6.0.9",
"knex": "^0.21.1",
"my-sql": "^1.2.15"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.13",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}