-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 792 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 792 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": "github-action-school",
"version": "1.0.0",
"description": " Github actions & testing school",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "npm run build && node dist/app/server.js",
"build": "rimraf ./dist && tsc",
"lint": "npx prettier --write src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2"
}
}