-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.74 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": "web-backend",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"check:ci": "npm run lint && npm run test && npm run build",
"dev": "NODE_ENV=development nodemon",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint . --ext .ts && prettier './**/*.{ts,js}' --check",
"lint:prettier": "npm run prettier -- --check",
"postinstall": "husky install",
"prettier": "prettier './**/*.{ts,js}'",
"prettier:fix": "npm run prettier -- --write",
"start": "NODE_ENV=production node dist/index.js",
"test": "echo No tests"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/datasource-rest": "^6.2.2",
"@apollo/server": "^4.10.4",
"@apollo/server-plugin-response-cache": "^4.1.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@stylistic/eslint-plugin": "^1.7.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-perfectionist": "^2.9.0",
"eslint-plugin-prettier": "^5.1.3",
"graphql": "^16.8.1",
"husky": "^9.0.11",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}