-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.13 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "woodlands-co-uk-components",
"version": "0.4.2",
"title": "Woodlands.co.uk Component Library",
"description": "Web components for Woodlands.co.uk using Fractal.",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/WoodlandsCoUk/components.git"
},
"scripts": {
"start": "npm run development & fractal start --sync & npm run watch",
"build": "npm run production && fractal build",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "",
"lint": "npm run lint:js",
"lint:js": "npx standard",
"lint:css": "npx stylelint 'src/**/*.{css,scss,sass}'",
"deploy": "npm run build && push-dir --dir=build --branch=gh-pages --force",
"release": "standard-version --tag-prefix=",
"install": "npm run production"
},
"dependencies": {
"@frctl/fractal": "^1.5.2",
"accordion-js": "^2.8.0",
"alpinejs": "^2.8.0",
"cross-env": "^7.0.3",
"deepmerge": "^4.2.2",
"dotenv-webpack": "^2.0.0",
"faker": "^4.1.0",
"hamburgers": "^1.1.3",
"heroicons": "^0.1.0",
"highlight.js": "^10.5.0",
"laravel-mix": "^5.0.9",
"mapbox-gl": "^1.13.0",
"micromodal": "^0.4.6",
"node-sass-glob-importer": "^5.3.3",
"photoswipe": "^4.1.3",
"sass": "^1.32.5",
"sass-loader": "^8.0.2",
"simple-icons": "^2.19.0",
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^1.2.1",
"tailwindcss": "^1.9.6",
"tiny-slider": "^2.9.3",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@tailwindcss/custom-forms": "^0.2.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"push-dir": "^0.4.1",
"standard": "^14.3.4",
"standard-version": "^8.0.2",
"tailwindcss-text-indent": "^1.0.2"
},
"lint-staged": {
"*.(vue|js)": [
"npm run lint:js"
],
"*.(css|scss|sass)": [
"npm run lint:css"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"standard": {
"global": [
"CustomEvent"
]
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": null,
"no-descending-specificity": null,
"indentation": 4
}
},
"standard-version": {
"skip": {
"changelog": true
}
}
}