-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.06 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "72Horas",
"version": "1.0.0",
"description": "Projeto 72h",
"main": "index.html",
"scripts": {
"audit-deps": "rimraf -f package-lock.json && synp --source-file yarn.lock && npm audit & rimraf -f package-lock.json",
"prebuild": "npm-run-all --parallel clean",
"build": "cross-env NODE_ENV=production",
"postbuild": "hugo --ignoreCache --cleanDestinationDir --verbose",
"clean": "npm-run-all --parallel clean:*",
"clean:dist": "rimraf ./public/**/*.*",
"clean:testResults": "rimraf ./testResults/**/*.xml",
"prelint": "rimraf ./testResults/**/*.xml",
"lint": "npm-run-all --parallel lint:*",
"lint:sass": "stylelint \"./assets/stylesheets/**/*.scss\" --formatter verbose --output-file ./testResults/sassLint.txt",
"lint:es": "eslint --ext .es,.js \"./assets/scripts/**\" --format junit --output-file ./testResults/esLint.xml",
"serve": "npm-run-all start:*",
"start:hugo": "cross-env NODE_ENV=development hugo server --noHTTPCache=true --ignoreCache --templateMetrics --disableFastRender --verbose",
"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"
},
"repository": "https://github.com/AppCivico/72h-www.git",
"author": "Eduardo Ruiz <[email protected]>",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/runtime": "^7.18.9",
"@vue/eslint-config-airbnb": "^7.0.0",
"autoprefixer": "^9.8.8",
"babel-preset-env": "^1.7.0",
"babelify": "^10.0.0",
"browserify": "^16.2.2",
"changelog-verify": "^1.1.2",
"cross-env": "^5.2.0",
"csscomb": "^4.2.0",
"cssnano": "^4.1.10",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.4.0",
"modularscale-sass": "^3.0.5",
"npm-run-all": "^4.1.5",
"onchange": "^4.1.0",
"postcss": "^8.4.14",
"postcss-cli": "^6.1.3",
"stylelint": "^14.11.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^28.0.0",
"stylelint-scss": "^4.3.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"synp": "^1.3.1",
"version-changelog": "^3.1.1"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@vue/component-compiler-utils": "^3.0.0",
"core-js": "^3.24.1",
"dayjs": "^1.8.36",
"fuzzysort": "^1.1.4",
"highcharts": "^10.2.0",
"micromodal": "^0.3.2",
"numeral": "^2.0.6",
"qs": "^6.6.0",
"tiny-slider": "^2.9.1",
"vue": "^2.6.10"
},
"browserslist": [
"iOS >= 11",
"> 1%",
"last 2 versions",
"not dead"
]
}