-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "static-site-generator-complete",
"version": "1.0.0",
"description": "static site generator in nodejs",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"test-watch": "vitest watch",
"build:source": "tsc",
"build": "npm run build:source && node dist/index.js",
"serve": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Antony0101/static-site-generator-complete.git"
},
"author": "antony0101",
"license": "ISC",
"bugs": {
"url": "https://github.com/Antony0101/static-site-generator-complete/issues"
},
"homepage": "https://github.com/Antony0101/static-site-generator-complete#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.11",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vitest": "^2.0.4"
},
"dependencies": {
"express": "^4.19.2",
"joi": "^17.13.3",
"morgan": "^1.10.0"
}
}