-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 981 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
38
{
"name": "ilend-service-seed",
"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.14.0",
"apollo-datasource": "^0.7.0",
"apollo-server-caching": "^0.5.1",
"apollo-server-express": "^2.12.0",
"crypto": "^1.0.1",
"express": "^4.17.1",
"graphql": "14.6.0",
"knex": "^0.20.13",
"lodash": "^4.17.15",
"merge-graphql-schemas": "^1.7.7",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/express": "^4.17.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.0",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}