-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "website-v2",
"version": "2.0.0",
"description": "My personal portfolio website",
"main": "app.js",
"repository": "https://github.com/smknaqvi/website",
"author": "smknaqvi",
"license": "CC0 1.0 Universal",
"private": true,
"scripts": {
"start": "tsc && concurrently \"tsc -w\" \"nodemon ./dist/app.js\"",
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@graphcms/utils": "^1.1.0",
"body-parser": "^1.19.1",
"cross-fetch": "^3.1.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"express-handlebars": "^6.0.2",
"express-rate-limit": "^6.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"apollo": "^2.33.9",
"concurrently": "^7.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}