-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.76 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ecommerce-application",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix --color",
"format": "prettier --write .",
"start": "webpack serve --open -c webpack.dev.ts",
"build": "cross-env NODE_ENV=production webpack -c webpack.prod.ts",
"test": "jest",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
],
"**/*.html": "prettier --write",
"**/*.scss": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickoff/eCommerce-Application.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nickoff/eCommerce-Application/issues"
},
"homepage": "https://github.com/nickoff/eCommerce-Application#readme",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@types/bootstrap": "^5.2.6",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.197",
"@types/node": "^20.4.8",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"prettier": "^3.0.1",
"sass": "^1.64.2",
"sass-loader": "^13.3.2",
"svg-loader-js": "^1.0.7",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tsx-vanilla": "^1.0.0",
"typescript": "^5.1.6",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@commercetools/platform-sdk": "^5.0.0",
"@commercetools/sdk-client-v2": "^2.2.0",
"@faker-js/faker": "^8.0.2",
"@fancyapps/ui": "^5.0.22",
"@jsdsl/bimap": "^0.1.1",
"@types/bidirectional-map": "^1.0.2",
"bidirectional-map": "^1.1.1",
"bootstrap": "^5.3.1",
"clsx": "^2.0.0",
"lodash": "^4.17.21",
"navigo": "^8.11.1",
"npm": "^9.8.1",
"promise-loading-spinner": "^3.1.0",
"range-slider-input": "^2.4.4",
"yup": "^1.2.0"
}
}