-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.91 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
50
51
52
53
54
55
{
"name": "weather-app",
"version": "1.0.0",
"description": "A weather app to display the weather information using API data with JavaScript. Users can search for the city and get the weather information and also users can change the temperature between Celsius and Fahrenheit.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev:css": "tailwindcss build ./src/style.css -o ./dist/style.css",
"build:dev:js": "webpack --mode development",
"build:dev": "npm run build:dev:css && npm run build:dev:js",
"build:prod:css": "NODE_ENV=production tailwindcss build ./src/style.css -o ./dist/style.css",
"build:prod:js": "webpack --mode production",
"build": "npm run build:prod:css && npm run build:prod:js",
"start": "webpack serve --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dipbazz/weather-app.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dipbazz/weather-app/issues"
},
"homepage": "https://github.com/dipbazz/weather-app#readme",
"devDependencies": {
"@babel/preset-env": "^7.13.12",
"@webpack-cli/init": "^1.1.3",
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"postcss": "^8.2.8",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-scss": "^3.17.2",
"webpack": "^5.27.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"moment": "^2.29.1",
"tailwindcss": "^2.0.4"
}
}