-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1016 Bytes
/
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
{
"name": "weather-app-js",
"version": "1.0.0",
"description": "This is the 5th project of the Main Javascript curriculum at [Microverse](https://www.microverse.org/) - @microverseinc",
"main": ".eslintrc.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config prod.config.js",
"start:dev": "webpack-dev-server",
"watch": "webpack --watch",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arslanbisharat/weather-app-js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/arslanbisharat/weather-app-js/issues"
},
"homepage": "https://github.com/arslanbisharat/weather-app-js#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint-plugin-import": "^2.22.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"eslint-config-airbnb": "^18.2.0"
}
}