-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 3.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vl-blockchain-navigator",
"version": "1.0.3",
"description": "Blockchain navigator for 2018 Brazilian election donations on VotoLegal",
"main": "index.html",
"scripts": {
"audit-deps": "rimraf -f package-lock.json && synp --source-file yarn.lock && npm audit & rimraf -f package-lock.json",
"build:assets": "npm-run-all --parallel build:img build:css build:js",
"build:js": "npm-run-all compile:js",
"build:css": "npm-run-all compile:sass compress:css",
"build": "cross-env NODE_ENV=production npm-run-all build:assets",
"build:img": "npm-run-all compress:img",
"postbuild": "hugo --ignoreCache --cleanDestinationDir",
"clean": "npm-run-all --parallel clean:*",
"clean:dist": "rimraf ./public/**/*.*",
"clean:testResults": "rimraf ./testResults/**/*.xml",
"compile:sass": "node-sass ./source/stylesheets --output-style compressed --output ./assets/assets/styles --source-map \"static/assets/styles\"",
"compress:css": "postcss --use autoprefixer cssnano --safe -r ./assets/assets/styles/**/*.css",
"compress:img": "imagemin \"./source/images/**/*.{gif,jpg,png,svg}\" --out-dir=./static/assets/images",
"compile:js": "npm-run-all compile:js:*",
"compile:js:app": "browserify ./source/scripts/index.js -o ./assets/assets/scripts/index.js -t [ babelify ]",
"compile:js:vendor": "browserify ./source/scripts/vendor.js -o ./assets/assets/scripts/vendor.js -t",
"prelint": "rimraf ./testResults/**/*.xml",
"lint": "npm-run-all --parallel lint:*",
"lint:es": "eslint --ext .es,.js \"./source/scripts/**\" --format junit --output-file ./testResults/esLint.xml",
"lint:sass": "sass-lint \"./source/stylesheets/**/*.scss\" --verbose --no-exit --format junit --output ./testResults/sassLint.xml",
"serve": "npm-run-all build:assets --parallel watch start:*",
"start:hugo": "cross-env NODE_ENV=development hugo server --noHTTPCache=true --ignoreCache --templateMetrics --disableFastRender",
"pretest": "npm run lint",
"test": "jest",
"preversion": "git checkout master && git merge dev",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git checkout dev && git merge master",
"watch": "npm-run-all --parallel watch:*",
"watch:sass": "onchange \"./source/stylesheets/**/*.scss\" -- npm run build:css",
"watch:es6": "onchange \"./source/scripts/**/*.{es,js,json}\" -- npm run build:js",
"watch:img": "onchange \"./source/images/**/*.{gif,jpg,png,svg}\" -- npm run build:img"
},
"repository": "https://github.com/AppCivico/vl-blockchain-navigator.git",
"author": "Robson Sobral <robson@oficiodesign.com>",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.0.1",
"@vue/component-compiler-utils": "^2.2.0",
"autoprefixer": "^9.1.5",
"babel-eslint": "^10.0.0",
"babel-preset-env": "^1.7.0",
"babelify": "^10.0.0",
"browserify": "^16.2.2",
"changelog-verify": "^1.1.0",
"cross-env": "^5.2.0",
"csscomb": "^4.2.0",
"cssnano": "^4.1.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"imagemin-cli": "^3.0.0",
"modularscale-sass": "^3.0.5",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.3",
"onchange": "^4.1.0",
"postcss-cli": "^6.0.0",
"sass-lint": "^1.12.1",
"synp": "^1.3.1",
"version-changelog": "^3.1.0"
},
"dependencies": {
"chartist": "^0.11.0",
"dayjs": "^1.7.7",
"vue": "^2.5.17"
}
}