-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 993 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 993 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "api",
"version": "2.0.0",
"main": "./dist/index.js",
"type": "module",
"license": "Apache-2.0",
"private": "true",
"scripts": {
"dev": "node .",
"lint": "eslint . --fix --ext .ts",
"prettier": "prettier --write . '!**/*.{ts}'",
"watch": "tsc --watch"
},
"dependencies": {
"apicache": "^1.6.3",
"axios": "^0.27.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.1",
"morgan": "^1.10.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.5",
"typescript": "^4.8.2"
},
"devDependencies": {
"@types/apicache": "^1.6.1",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}