-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "yarn",
"version": "1.0.0",
"main": "/src/server.js",
"scripts": {
"devStart": "tsc-watch --onSuccess \"yarn run start\"",
"prepare": "husky install || echo 'Failed to install husky'",
"start": "rm -rf ./src/public/static/; mv -f ./dist/static ./src/public; node ./dist/server.js"
},
"repository": "[email protected]:PavelKopecky/shopping-list.git",
"author": "Pavel Kopecký <[email protected]>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.17.3"
},
"devDependencies": {
"@martin-kolarik/eslint-config": "^7.1.6",
"@types/express": "^4.17.17",
"@types/express-session": "1.17.0",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nodemon": "^3.0.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{cjs,js,json,ts}": "eslint --fix"
}
}