generated from hexlet-boilerplates/webpack-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.9 KB
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": "@hexlet/code",
"version": "1.0.0",
"description": "RSS reader",
"type": "module",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aldangold/frontend-project-lvl3.git"
},
"author": "aldangold <meloshnikoff@gmail.com>",
"license": "ISC",
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "jsdom"
},
"bugs": {
"url": "https://github.com/aldangold/frontend-project-lvl3/issues"
},
"homepage": "https://github.com/aldangold/frontend-project-lvl3#readme",
"main": "src/app.js",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.15.4",
"@babel/node": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"babel-jest": "^27.1.1",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"debug": "^4.3.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.1.1",
"jest-cli": "^27.1.1",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"style-loader": "^3.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.1.1"
},
"dependencies": {
"@popperjs/core": "^2.11.2",
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"i18next": "^21.6.5",
"lodash": "^4.17.21",
"npm-check-updates": "^11.8.5",
"on-change": "^4.0.0",
"sass": "^1.39.0",
"sass-loader": "^12.1.0",
"yup": "^0.32.11"
}
}