-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
{
"name": "2024_2_komanda7",
"version": "1.0.0",
"description": "Репозиторий команды \"Команда 7\", проект KudaGo",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --host 0.0.0.0",
"watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint",
"prepare": "husky && husky install",
"compile:templates": "handlebars public/components/EventCreateForm/EventCreateForm.hbs -f public/components/EventCreateForm/EventCreateForm.precompiled.js",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{js, jsx}": [
"npm run lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontend-park-mail-ru/2024_2_Komanda7.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/frontend-park-mail-ru/2024_2_Komanda7/issues"
},
"homepage": "https://github.com/frontend-park-mail-ru/2024_2_Komanda7#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.11.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"handlebars": "^4.7.8",
"handlebars-loader": "^1.7.3",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"cors": "^2.8.5",
"dompurify": "^3.2.3",
"express": "^4.21.1",
"minimist": "^1.2.8"
}
}