-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.85 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
57
{
"name": "tic-tac-toe-node",
"version": "1.0.0",
"description": "TicTacToe game with NodeJS",
"main": "index.js",
"scripts": {
"git-after-merge": "current_branch=$(git rev-parse --abbrev-ref HEAD) && echo $current_branch && git fetch --prune && git checkout master && git pull && git branch -d $current_branch",
"watch-node": "nodemon --config nodemon-local.json",
"dev-run": "source .env && npx node --inspect=0.0.0.0:$PORT_DEBUG --nolazy -r ts-node/register -r dotenv/config src/bin/www",
"lint": "npx tsc --noEmit && eslint \"src/**/*.{js,ts}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicobees/tic-tac-toe-node.git"
},
"keywords": [
"tic-tac-toe",
"nodejs",
"graphql"
],
"author": "Nicola Abis",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicobees/tic-tac-toe-node/issues"
},
"homepage": "https://github.com/nicobees/tic-tac-toe-node#readme",
"devDependencies": {
"@types/config": "0.0.36",
"@types/eslint": "^7.2.2",
"@types/express": "^4.17.8",
"@types/graphql": "^14.5.0",
"@types/node": "^14.6.4",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"apollo-datasource-rest": "^0.9.3",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"graphql-import-node": "0.0.4",
"graphql-tools": "^6.2.1",
"nodemon": "^2.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"apollo-server-express": "^2.17.0",
"body-parser": "^1.19.0",
"config": "^3.3.1",
"express": "^4.17.1",
"graphql": "^15.3.0"
}
}