-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "voty-admin",
"description": "Voty UltraHack Admin Panel",
"version": "1.0.0",
"author": "Kamil Lelonek <[email protected]>",
"license": "MIT",
"scripts": {
"start": "parcel -p 8080 ./src/index.html",
"build": "parcel build ./src/index.html --public-url /dist",
"start:prod": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 server.js",
"heroku-postbuild": "npm run build",
"lint": "eslint --ext .js,.vue src/js",
"lint-fix": "eslint --ext .js,.vue src/js --fix"
},
"repository": {
"type": "git",
"url": "[email protected]:KamilLelonek/voty-admin.git"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chart.js": "^2.7.2",
"express": "^4.16.3",
"parcel-bundler": "^1.8.1",
"parcel-plugin-eslint": "^1.0.0",
"parcel-plugin-vue": "^1.4.0",
"uuid": "^3.2.1",
"vue": "^2.5.11",
"vue-chartjs": "^3.3.1",
"vue-native-websocket": "^2.0.7",
"vue-router": "^3.0.1",
"vuetify": "^1.0.18",
"vuex": "^3.0.1"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-vue": "^2.0.2",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.2.0",
"prettier": "^1.12.1"
}
}