-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "openRAP",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:styles": "stylelint \"apps/**/*.scss\" && stylelint \"libs/**/*.scss\""
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"assets/**/*.js": "tslint",
"**/*.html": "htmlhint --config htmlhint.conf",
"assets/**/*.css": "stylelint",
"assets/**/*.scss": "stylelint --syntax=scss",
"*.{md,html}": [
"prettier --write"
],
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"codelyzer": "^5.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-sass": "^4.0.2",
"htmlhint": "^0.11.0",
"husky": "^1.3.1",
"imagemin-lint-staged": "^0.4.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.12.0",
"prettier": "1.16.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"tslint": "^5.7.0",
"typescript": "~3.2.4"
}
}