forked from OasisDEX/spock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "@oasisdex/spock-graphql-api",
"version": "0.1.2",
"license": "AGPL-3.0-or-later",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"prepublishOnly": "cd ../.. && yarn build",
"start": "ts-node -T ./src/index.ts",
"format": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --check \"./**/*.ts\"",
"format:fix": "prettier --config ../../.prettierrc --ignore-path ../../.prettierignore --write \"./**/*.ts\"",
"lint": "eslint --ext .ts src",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit --incremental false --composite false",
"clean": "rm -rf dist && rm -f tsconfig.build.tsbuildinfo",
"test": "true"
},
"dependencies": {
"lodash": "^4.17.15",
"ts-essentials": "^6.0.2",
"express": "^4.16.4",
"helmet": "^3.16.0",
"apicache": "^1.4.0",
"compression": "^1.7.4",
"ejs": "^2.6.1",
"postgraphile": "^4.3.3",
"postgraphile-plugin-connection-filter": "^1.0.0-rc.2",
"@types/helmet": "^0.0.43",
"@types/apicache": "^1.2.0",
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/express": "^4.16.1"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/chai-as-promised": "^7.1.2",
"@types/chai-subset": "^1.3.3",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node-cleanup": "^2.1.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"consola": "^2.7.1",
"mocha": "^6.2.2",
"sinon": "^8.0.1",
"sinon-chai": "^3.3.0",
"ts-node": "^8.5.4",
"typescript": "^3.8.3"
}
}