-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "youtube-client",
"version": "0.0.1",
"description": "A web app to view the information about youtube clips on user request",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/",
"start": "webpack-dev-server --open --mode development --watch",
"build": "webpack --progress -p",
"test": "jest",
"test-watch": "jest --watch",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rolling-scopes-school/juliastetskaya-2019Q1.git"
},
"keywords": [
"youtube",
"app",
"client"
],
"author": "Julia Stetskaya <juliastetskaya@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rolling-scopes-school/juliastetskaya-2019Q1/issues"
},
"homepage": "https://github.com/rolling-scopes-school/juliastetskaya-2019Q1#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-css-modules": "^2.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
}
}