-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@postlight/glide",
"version": "0.0.1",
"license": "(Apache 2.0 OR MIT)",
"description": "GraphQL for Salesforce",
"main": "dist/lib.js",
"types": "dist/lib.d.ts",
"authors": [
"Zachary Golba <zachary.golba@postlight.com>"
],
"bin": {
"glide": "dist/main.js"
},
"scripts": {
"build": "tsc --build && chmod +x dist/main.js",
"clean": "rm -rf *.log coverage dist tsconfig.tsbuildinfo packages/*/{dist,tsconfig.tsbuildinfo}",
"lint": "tslint --project tsconfig.json",
"test": "jest --config jest.config.json --preset ts-jest"
},
"dependencies": {
"@glide/runtime": "^0.0.1",
"@zakgolba/jsonptr": "^1.1.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"commander": "^3.0.1",
"cross-fetch": "^3.0.4",
"express": "^4.17.1",
"get-port": "^5.0.0",
"graphql": "^14.5.7",
"graphql-playground-middleware-express": "^1.7.12",
"jsforce": "1.9.2",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"open": "6.4.0",
"pluralize": "^8.0.0",
"serve-static": "^1.14.1",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/body-parser": "1.17.1",
"@types/chalk": "2.2.0",
"@types/commander": "2.12.2",
"@types/express": "4.17.1",
"@types/graphql": "14.5.0",
"@types/jest": "24.0.18",
"@types/jsforce": "1.9.9",
"@types/lodash": "4.14.139",
"@types/morgan": "1.7.37",
"@types/node": "12.7.5",
"@types/open": "6.2.1",
"@types/pluralize": "0.0.29",
"@types/serve-static": "1.13.3",
"@types/ws": "6.0.3",
"codecov": "^3.6.1",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "3.6.3"
},
"volta": {
"node": "12.2.0"
}
}