-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 820 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 820 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
{
"name": "js-starter",
"version": "0.0.1",
"description": "Starter template for JavaScript apps",
"main": "app.js",
"scripts": {
"clean": "rm -r build",
"build": "tsc",
"lint": "eslint",
"test": "jest",
"start": "npm run build && node build/app.js"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"jose": "^5.2.2"
}
}