-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 KB
/
package.json
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
{
"name": "extension-app-file-archive-reference-implementation",
"version": "1.0.0",
"scripts": {
"build": "tsc --build tsconfig.json",
"lint": "npx eslint --ext .ts src/",
"start": "node ./dist --env=production",
"dev": "nodemon"
},
"nodemonConfig": {
"watch": [
"src",
"views"
],
"ext": "ts, pug",
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-jwt": "^8.4.1",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"ts-command-line-args": "^2.5.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/node": "^20.2.3",
"@types/pug": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-plugin-node": "^11.1.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
}
}