-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "qs-web-api",
"version": "1.0.0",
"description": "Stack - apollo-server, graphql",
"main": "build/app.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "npx nodemon ./src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantifiedstudent/web-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/quantifiedstudent/web-api/issues"
},
"homepage": "https://github.com/quantifiedstudent/web-api#readme",
"dependencies": {
"apollo-datasource-rest": "^3.5.3",
"apollo-server-core": "^3.8.1",
"apollo-server-express": "^3.8.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.5.0",
"http": "^0.0.1-security",
"https": "^1.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/node": "^18.7.23",
"concurrently": "^7.4.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"typescript": "^4.8.3"
}
}