forked from italia/design-comuni-plone-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.17 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
{
"//": "Put here only devDependencies, theme dependencies should stay inside of the theme folder.",
"name": "design.plone.theme",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:italia/design.plone.theme.git"
},
"keywords": [
"agid",
"design.plone.theme",
"theme"
],
"author": "RedTurtle Technology",
"license": "GPL-3.0",
"homepage": "https://github.com/italia/design.plone.theme",
"devDependencies": {
"@redturtle/eslint-config": "^2.0.0",
"autoprefixer": "^9.0.2",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"cssnano": "^4.0.5",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.2",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-concat-css": "^0.3.2",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^3.4.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^3.0.1",
"grunt-webpack": "^3.0.2",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"load-grunt-tasks": "^4.0.0",
"node-sass": "^4.12.0",
"postcss-flexbugs-fixes": "^4.1.0",
"prettier": "^1.14.0",
"stylelint": "^9.4.0",
"stylelint-config-prettier": "^3.3.0",
"stylelint-config-recommended": "^2.1.0",
"webpack": "^3.11.0"
},
"scripts": {
"build": "grunt compile && yarn prettier-all",
"develop": "grunt compile && grunt",
"postinstall": "cd src/design/plone/theme/theme/ && npm install",
"precommit": "lint-staged",
"prettier-all": "yarn prettier-sass && yarn prettier-js && yarn prettier-json",
"prettier-js": "prettier --write 'src/design/plone/theme/theme/js/src/**/*.js'",
"prettier-json": "prettier --write 'src/design/plone/theme/theme/**/*.json'",
"prettier-sass": "prettier --write 'src/design/plone/theme/theme/sass/**/*.scss'",
"test": "stylelint 'src/design/plone/theme/theme/**/*.scss'"
},
"lint-staged": {
"*.{js,json,scss}": [
"yarn prettier-all",
"git add"
]
}
}