-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
{
"name": "qs-api",
"version": "1.0.0",
"description": "The Quantified Student REST API",
"main": "server.ts",
"scripts": {
"build": "tsc -p .",
"lint": "npx eslint ./src/",
"lint-fix": "npx eslint ./src/ --fix",
"start": "node ./build/server.js",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantifiedstudent/qs-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/quantifiedstudent/qs-api/issues"
},
"homepage": "https://github.com/quantifiedstudent/qs-api#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"mysql": "^2.18.1",
"node-fetch": "^2.6.7",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/mysql": "^2.15.21",
"@types/node-fetch": "^2.6.2",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"node-dev": "^7.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}