-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "webpack-package",
"version": "0.1.0",
"description": "",
"type": "module",
"scripts": {
"test": "jest --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/webpack-package.git"
},
"author": "Kirill Mokevnin",
"license": "ISC",
"bugs": {
"url": "https://github.com/hexlet-boilerplates/webpack-package/issues"
},
"homepage": "https://github.com/hexlet-boilerplates/webpack-package#readme",
"jest": {
"verbose": true,
"testEnvironmentOptions": {
"url": "http://localhost/"
},
"testEnvironment": "jsdom"
},
"main": "src/init.js",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@eslint/js": "^9.9.1",
"ajv": "^8.17.1",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"debug": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jest": "^27.2.1",
"file-loader": "^6.2.0",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss-loader": "^7.2.4",
"postcss-preset-env": "^7.8.3",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"npm-check-updates": "^16.6.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0"
}
}