-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
31 lines (31 loc) · 899 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
{
"name": "weather-app",
"version": "1.0.0",
"description": "Weather in your city",
"main": "dist/main.js",
"scripts": {
"build": "webpack --config build/webpack.config.js --env.production",
"build:dev": "webpack --config build/webpack.config.js",
"watch": "webpack --config build/webpack.config.js --watch",
"start": "node ./dist/main.min.js",
"start:dev": "node ./dist/main.js"
},
"author": "NataliaTepluhina <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"vuido": "^0.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"launchui-packager": "^0.1.1",
"vue-loader": "^15.4.0",
"vue-template-compiler": "^2.5.17",
"vuido-template-compiler": "^0.2.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}