-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 653 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 653 Bytes
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
{
"name": "interview-experience-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"start": "npm run compile && node ./dist/index.js",
"watch": "ts-node-dev --transpile-only ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "4.9.4",
"graphql": "16.8.1",
"nodejs-jsencrypt": "3.0.0-rc.1",
"pg": "8.11.3"
},
"devDependencies": {
"@types/node": "20.8.5",
"dotenv": "16.3.1",
"ts-node-dev": "1.1.8",
"typescript": "5.2.2"
}
}