-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "vilka",
"main": "index.js",
"scripts": {
"prestart": "npm run compile:templates && npm run compile:bundle",
"start": "node ./server/server.js",
"start-csat": "cd ./public/csat && npm start",
"compile:templates": "find public/ -name '*.hbs' | xargs handlebars -f public/precompiled.js",
"compile:bundle": "npx webpack",
"build": "npm run prestart",
"lint": "npx eslint --fix --color"
},
"dependencies": {
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.6",
"express": "^4.21.0",
"handlebars": "^4.7.8",
"typescript": "^5.6.3"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/handlebars": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@typescript-eslint/typescript-estree": "^8.8.1",
"css-loader": "^7.1.2",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"husky": "^4.3.8",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.80.4",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript-eslint": "^8.8.1",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.ts": [
"npx eslint --fix"
]
}
}