-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "nft-aviad-shmuel",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && node dist/app.js",
"dev": "tsc && nodemon src/app.ts",
"lint": "eslint . --ext .ts",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 -e \"src/**/*.ts\" \"src/**/*.*\" dist/",
"build": "npm run clean && tsc && npm run copy-files"
},
"keywords": [],
"author": "Aviad Shmuel",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/express-ejs-layouts": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"copyfiles": "^2.4.1",
"eslint": "^8.24.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-ejs-layouts": "^2.5.1",
"javascript-time-ago": "^2.5.7"
}
}