-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.17 KB
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
{
"name": "currency-exchange-api",
"version": "0.0.1",
"description": "Currency exchange API",
"license": "MIT",
"author": "Matas Simonaitis",
"devDependencies": {
"@types/jest": "~26.0.10",
"@types/node": "~12.12",
"@typescript-eslint/eslint-plugin": "~3.9.1",
"@typescript-eslint/parser": "~3.9.1",
"@types/graphql": "^0.9.4",
"eslint": "~7.7.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "~23.20.0",
"jest": "~26.4.2",
"ts-jest": "~26.2.0",
"ts-node-dev": "^1.0.0",
"typescript": "~4.0.2"
},
"scripts": {
"server": "export $(cat .env | xargs) && tsc && node build/src/server.js",
"clean": "rimraf coverage build tmp",
"postinstall": "tsc -p tsconfig.release.json",
"build": "tsc -p tsconfig.release.json",
"build:watch": "ts-node-dev src/server.ts",
"lint": "eslint src --ext .ts",
"test": "export $(cat .env | xargs) && NODE_ENV=test && jest --coverage --runInBand --detectOpenHandles",
"test:watch": "export $(cat .env | xargs) && jest --watch"
},
"dependencies": {
"tslib": "^2.0.3",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0"
}
}