forked from rudnitskih/gulp-mate-academy-template
-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "gulp-boilerplate",
"version": "1.0.0",
"description": "Frontend boilerplate based on gulp",
"scripts": {
"init": "mate-scripts init",
"start": "mate-scripts start",
"lint": "mate-scripts lint",
"test:only": "mate-scripts test",
"build": "mate-scripts build",
"deploy": "mate-scripts deploy",
"update": "mate-scripts update",
"postinstall": "npm run update",
"test": "npm run lint && npm run test:only"
},
"keywords": [],
"author": "Mate Academy",
"license": "GPL-3.0",
"devDependencies": {
"@linthtml/linthtml": "^0.9.6",
"@mate-academy/eslint-config": "latest",
"@mate-academy/linthtml-config": "latest",
"@mate-academy/scripts": "^1.8.5",
"@mate-academy/stylelint-config": "latest",
"@parcel/transformer-sass": "^2.12.0",
"eslint": "^8.57.0",
"eslint-plugin-node": "^11.1.0",
"parcel": "^2.12.0",
"prettier": "^3.3.2",
"stylelint": "^16.7.0",
"stylelint-scss": "^6.4.1"
},
"browserslist": [
"last 2 versions"
],
"mateAcademy": {
"projectType": "layout",
"linters": {
"bem": false
}
}
}