-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 2.01 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
46
47
{
"name": "painkiller-already",
"version": "0.1.0",
"description": "",
"main": "js/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "rm -rf node_modules/webpack/node_modules/uglify-js",
"dev": "./node_modules/.bin/webpack --config webpack.config.js -d --hide-modules --progress",
"dev_watch": "./node_modules/.bin/webpack --config webpack.config.js -d --hide-modules --progress --watch",
"prod": "./node_modules/.bin/webpack --config webpack.config.js -p --hide-modules --progress",
"prod_watch": "./node_modules/.bin/webpack --config webpack.config.js -p --hide-modules --progress --watch",
"container_build": "docker build -t painkilleralready_app -f Dockerfile .",
"container_start": "docker run -v $PWD:/var/www/html --name painkilleralready_app -d -p 8080:80 painkilleralready_app",
"container_stop": "docker stop painkilleralready_app && docker rm painkilleralready_app",
"container_database": "docker exec painkilleralready_app mysql -u root -e 'create database needl_pka'",
"container_upload": "docker exec painkilleralready_app bash -c 'mysql -u root needl_pka < /var/www/data.sql'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.18.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.26.0",
"exports-loader": "^0.6.3",
"imports-loader": "^0.7.0",
"style-loader": "^0.13.1",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"url-loader": "^0.5.7",
"vue": "^2.1.8",
"vue-html-loader": "^1.2.3",
"vue-loader": "^10.0.2",
"vue-meta": "^0.5.3",
"vue-router": "^2.2.0",
"vue-template-compiler": "^2.1.3",
"vue-youtube-embed": "^2.0.0",
"vuex": "^2.1.1",
"webpack": "2.1.0-beta.25",
"whatwg-fetch": "^2.0.1"
},
"dependencies": {}
}