-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "medusa-frontend",
"description": "The Official Frontend for Medusa",
"author": "X O <[email protected]>",
"private": true,
"scripts": {
"start": "npm-run-all --parallel caddy watchify",
"caddy": "caddy",
"watchify": "watchify -vd -p browserify-hmr -e src/main.js -o dist/build.js",
"serve": "http-server -o -s -c 1 -a localhost",
"dev": "npm-run-all --parallel watchify serve",
"build": "cross-env NODE_ENV=production browserify -g envify src/main.js | uglifyjs -c warnings=false -m > dist/build.js"
},
"dependencies": {
"axios": "^0.15.2",
"jwt-decode": "^2.1.0",
"vue": "^2.0.1",
"vue-router": "^2.1.1",
"vue-stash": "^2.0.1-beta"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babelify": "^7.2.0",
"bootstrap-vue": "^0.3.12",
"browserify": "^13.0.1",
"browserify-hmr": "^0.3.1",
"cross-env": "^1.0.6",
"envify": "^3.4.1",
"http-server": "^0.9.0",
"loglevel": "^1.4.1",
"npm-run-all": "^2.1.2",
"uglify-js": "^2.5.0",
"vueify": "^9.1.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"version": "1.0.0",
"main": "dist/build.js",
"repository": "https://github.com/pymedusa/frontend.git",
"license": "MIT"
}