-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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
{
"name": "search-badger",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"prettier": "prettier --write --list-different '**/*.{ts,md,js?(on),yml}'",
"prettier-check": "npm run prettier -- --write=false",
"lint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts' 'types/**/*.d.ts'",
"graphql": "get-graphql-schema https://sourcegraph.com/.api/graphql -j | gql2ts -o types/graphqlschema.d.ts",
"start": "node out/main.js"
},
"dependencies": {
"async-middleware": "^1.2.1",
"express": "^4.16.2",
"gh-badges": "^2.1.0",
"morgan": "^1.9.1",
"node-fetch": "^2.0.0",
"tagged-template-noop": "^2.1.0"
},
"devDependencies": {
"@sourcegraph/prettierrc": "^2.2.0",
"@sourcegraph/tsconfig": "^3.0.0",
"@sourcegraph/tslint-config": "^12.3.1",
"@types/express": "4.17.0",
"@types/morgan": "1.9.9",
"@types/node-fetch": "2.6.10",
"get-graphql-schema": "^2.1.1",
"gql2ts": "^1.8.2",
"prettier": "^1.16.0",
"source-map-support": "^0.5.0",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
}
}