-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "graphql-rules-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*.{js,ts,tsx,jsx}'",
"serve": "node dist/server.js",
"clear": "rm -rf dist || true && mkdir dist && tsc",
"watch": "npm run clear && concurrently -k npm:watch-*",
"watch-tsc": "tsc --watch --preserveWatchOutput",
"watch-node": "nodemon --watch ./dist --delay 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@playlyfe/gql": "^2.6.1",
"@types/jest": "24.0.12",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-prettier": "^3.0.1",
"nodemon": "^1.19.1",
"prettier": "^1.17.0",
"typescript": "^3.4.5"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.16.1",
"passport": "^0.4.0",
"passport-github": "^1.1.0"
}
}