-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (54 loc) · 1.49 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
{
"name": "@hexlet/code",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"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/Funkicide/frontend-project-lvl3.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Funkicide/frontend-project-lvl3/issues"
},
"homepage": "https://github.com/Funkicide/frontend-project-lvl3#readme",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@webpack-cli/generators": "^2.5.0",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"postcss-loader": "^7.0.1",
"sass": "^1.54.4",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"dependencies": {
"axios": "^0.27.2",
"bootstrap": "^5.2.0",
"i18next": "^21.9.1",
"lodash": "^4.17.21",
"on-change": "^4.0.1",
"yup": "^0.32.11"
}
}