-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
68
{
"name": "kurs_3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "djon198360",
"license": "ISC",
"scripts": {
"dev": "webpack --mode development --watch",
"format": "prettier --write .",
"lint:js": "eslint ./js_component/*.js",
"lint:css": "stylelint ./css/*.css --fix",
"prepare": "husky install",
"lint": "npm run lint:js && npm run lint:css",
"start": "http-server -p 3001",
"build": "webpack --mode production",
"lint:ts": "tsc --noEmit",
"server": "webpack serve",
"ts-test": "ts-jest",
"test": "jest"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"handlebars": "^4.7.7",
"http-server": "^14.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"install": "^0.13.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.7.6",
"npm": "^9.5.1",
"prettier": "^3.0.0",
"style-loader": "^3.3.3",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.0.0",
"testing-library": "^0.0.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djon198360/KURS_3.git"
},
"bugs": {
"url": "https://github.com/djon198360/KURS_3/issues"
},
"homepage": "https://github.com/djon198360/KURS_3#readme"
}