-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 KB
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
{
"name": "graphql-server-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "DOTENV_PATH=.env.dev nodemon --watch ./src -e ts,yaml --exec ts-node -- --project ./tsconfig.json ./src/app",
"test": "mocha -r ts-node/register test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://JayJayDeeee@bitbucket.org/JayJayDeeee/graphql-server-example.git"
},
"author": "JayJayDee <jindongp@gmail.com> (http://chatpot.chat)",
"license": "ISC",
"homepage": "https://bitbucket.org/JayJayDeeee/graphql-server-example#readme",
"dependencies": {
"apollo-server": "^3.11.1",
"dotenv": "^8.1.0",
"mysql2": "^2.3.3",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typeorm": "^0.2.18",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/graphql": "^14.5.0",
"@types/uuid": "^3.4.5",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "^3.5.3"
}
}