-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "ocs_tech_challenge",
"version": "1.0.0",
"description": "My Solution to the OCS Technical Challenge",
"main": "src/index.ts",
"keywords": [],
"author": "Nsikak Imoh",
"license": "MIT",
"scripts": {
"start": "node ./build/index.js",
"build": "tsc -p .",
"dev": "nodemon",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "npx eslint src/**/*.ts",
"lint:fix": "npx eslint --fix"
},
"dependencies": {
"apollo-datasource-rest": "^3.5.3",
"apollo-server": "^3.7.0",
"dotenv": "^16.0.1",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"axios": "^0.27.2",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}