-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "example-server-nodejs",
"version": "1.0.0",
"description": "Example backend application powered by Express running on Node.js.",
"main": "src/index.ts",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"mysql2": "^2.2.5",
"node-jsonwebtoken": "0.0.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32",
"winston": "^3.3.3",
"zod": "^1.11.16"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/express": "^4.17.11",
"@types/express-jwt": "^6.0.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^15.0.1",
"pkg": "^5.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"scripts": {
"start:dev": "ts-node src/index.ts",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/index.js",
"compile": "pkg --targets node14-linux-x64,node14-win-x64,node14-macos-x64 --out-path bin --compress GZip dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mitom18/example-server-nodejs.git"
},
"keywords": [
"example",
"nodejs",
"express"
],
"author": "Michal Toman",
"license": "MIT",
"bugs": {
"url": "https://github.com/mitom18/example-server-nodejs/issues"
},
"homepage": "https://github.com/mitom18/example-server-nodejs#readme"
}