-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "backdrop",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "tsc && node ./dist/src/server.js",
"dev": "nodemon ./src/server.ts",
"test": "jest",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'"
},
"author": "Olumide I. Nwosu",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/validator": "^13.7.14",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.22",
"sequelize-cli": "^6.6.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.3"
},
"dependencies": {
"@apollo/server": "^4.6.0",
"axios": "^1.3.5",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"jest": "^29.5.0",
"pg": "^8.10.0",
"pino": "^8.11.0",
"postgresql": "^0.0.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.30.0",
"sequelize-typescript": "^2.1.5"
},
"keywords": [],
"description": ""
}