-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.39 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
{
"name": "trello",
"version": "1.0.0",
"description": "\"netology hometask\"",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint .",
"test": "jest --passWithNoTests",
"doc": "jsdoc -c jsdoc.conf.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QueenArizona/Trello"
},
"keywords": [
"hometask"
],
"author": "Victoria Batnasunova",
"license": "MIT",
"bugs": {
"url": "https://github.com/QueenArizona/Trello/issues"
},
"homepage": "https://github.com/QueenArizona/Trello#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.21.2",
"file-loader": "^6.0.0",
"jest": "^26.0.1",
"jsdoc": "^3.6.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "3",
"css-loader": "^3.6.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"terser-webpack-plugin": "^3.0.6",
"webpack-merge": "^4.2.2"
}
}