forked from netology-code/js-advanced-diploma-old-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "retro-game",
"version": "1.0.0",
"description": "\"netology diploma\"",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"lint": "eslint .",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QueenArizona/Retro-Game"
},
"keywords": [
"hometask"
],
"author": "Victoria Batnasunova",
"license": "ISC",
"bugs": {
"url": "https://github.com/QueenArizona/Retro-Game/issues"
},
"homepage": "https://github.com/QueenArizona/Retro-Game#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"jest": "^26.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"url-loader": "^4.1.0"
}
}