-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "randomquotes",
"version": "1.0.0",
"description": "fetches and displays random quotes from an API",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"pretest": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist/ && webpack --mode=production --config=./config/webpack.config.js",
"start": "webpack-dev-server --mode=development --config=config/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arvind0598/randomquotes.git"
},
"keywords": [
"fcc",
"random",
"quotes"
],
"author": "arvind0598",
"license": "ISC",
"bugs": {
"url": "https://github.com/arvind0598/randomquotes/issues"
},
"homepage": "https://github.com/arvind0598/randomquotes#readme",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"terser-webpack-plugin": "^1.4.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
}
}