-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.04 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
46
47
48
{
"type": "module",
"dependencies": {
"commander": "^9.4.0",
"darkmode-js": "^1.5.7",
"esm": "^3.2.25",
"export-from-json": "^1.7.0",
"express": "^4.18.1",
"module": "^1.0.0"
},
"name": "agandhi29_static_site_geneator",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "npx prettier --write .",
"esLint": "npx eslint ."
},
"author": "Anshul Gandhi",
"license": "ISC",
"keywords": [],
"escription": "",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.2",
"babel-jest": "^29.3.1",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}