-
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) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "simple-rest-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/tsc && cp package.json ./lib/package.json",
"dev:start": "node lib/index.js",
"lint": "eslint \"src/**/*.ts\" --fix",
"start:docker": "docker run --name ETAPI -d -p 4000:4000 et-api",
"stop:docker": "docker stop ETAPI && docker rm ETAPI",
"build:docker": "docker build -t et-api ."
},
"engines": {
"node": ">=16.0.0"
},
"author": "Backend for beginners",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"node-cache": "^5.1.2",
"qs": "^6.11.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4"
}
}