-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.96 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.96 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "fullstackopenproject-backend",
"version": "1.0.0",
"description": "Server for the Full Stack Open Project",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.12.1",
"npm": ">=8.1.0"
},
"scripts": {
"start": "node -r dotenv/config dist/index.js",
"clean": "rimraf dist",
"build": "tsc --build tsconfig.json",
"build:clean": "npm run clean && npm run build",
"dev": "set NODE_ENV=development && tsx watch src/index.ts",
"lint": "eslint --fix --ext .ts .",
"lint:fix": "prettier --write . && eslint --ext .js,.jsx,.ts,.tsx,.vue . --fix"
},
"author": "Eric Telkkälä",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/erictelkkala/FullStackOpenProject-BackEnd.git"
},
"bugs": {
"url": "https://github.com/erictelkkala/FullStackOpenProject-BackEnd/issues"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.22.20",
"@swc/core": "^1.3.87",
"@swc/helpers": "^0.5.2",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.5",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"regenerator-runtime": "^0.14.0",
"ts-node": "^10.9.1",
"tsx": "^3.12.10"
},
"dependencies": {
"@apollo/server": "^4.9.3",
"argon2": "^0.30.3",
"body-parser": "^1.20.2",
"chalk": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"graphql": "^16.8.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"morgan": "^1.10.0",
"typescript": "^5.2.2"
}
}