-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "jobba",
"version": "0.17.1",
"description": "Jobba the Hub",
"main": "dist/lib/index.js",
"scripts": {
"build": "tsc && cp ./src/*.graphql ./dist/src/ && [ -d ./dist/bin ] && chmod -f +x ./dist/bin/* || exit 0",
"clean": "rm -rf ./dist",
"lint": "tslint -t stylish './src/**/*.ts' || exit 0",
"lint:verbose": "tslint -t codeFrame './src/**/*.ts' || exit 0",
"prepublish": "npm run build",
"watch": "tsc -w"
},
"keywords": [
"job",
"hub"
],
"repository": {
"type": "git",
"url": "git+https://github.com/whitebox-co/jobba.git"
},
"author": "Ross Hadden",
"license": "ISC",
"dependencies": {
"apollo-server": "^2.11.0",
"bull": "^3.13.0",
"chalk": "^2.4.2",
"graphql": "^14.6.0",
"graphql-import": "^0.7.1",
"graphql-resolvers": "^0.3.3",
"graphql-type-json": "^0.3.1",
"lodash": "^4.17.15",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/bull": "^3.12.1",
"@types/graphql-resolvers": "^0.2.2",
"@types/graphql-type-json": "^0.3.2",
"@types/lodash": "^4.14.149",
"@types/moment": "^2.13.0",
"@types/node": "^10.17.17",
"tslint": "^5.20.1",
"typescript": "^3.8.3"
},
"files": [
"/*.json",
"/.editorconfig",
"/dist",
"/lib",
"/src"
],
"types": "dist/lib/index.d.ts"
}