-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 809 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 809 Bytes
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
{
"name": "DemoList",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "ts-node-dev --transpile-only src/index.ts",
"build": "rm -rf ./dist && tsc",
"start": "node dist/index.js",
"start:watch": "npm run build && npm run start"
},
"keywords": [],
"author": "Doctor Liu",
"license": "MIT",
"dependencies": {
"@types/knex": "^0.14.26",
"@types/node": "^12.12.14",
"apollo-server": "^2.9.12",
"chalk": "^3.0.0",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"knex": "0.15.2",
"lodash": "^4.17.15",
"nodemon": "^2.0.2",
"pg": "^7.14.0",
"ts-node": "8.4.1",
"ts-node-dev": "^1.0.0-pre.42",
"typescript": "3.6.4",
"util": "^0.12.1",
"winston": "^2.4.0"
}
}