forked from archivesspace/archivesspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 936 Bytes
/
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
{
"name": "archivesspace-frontends",
"version": "1.0.1",
"description": "Check front end files for lint errors during CI",
"scripts": {
"eslint:ci": "eslint frontend/ public/",
"eslint:fix": "eslint --fix frontend/ public/",
"stylelint:ci": "stylelint '{frontend,public}/**/*.{css,less,scss}' -f verbose",
"stylelint:fix": "stylelint '{frontend,public}/**/*.{css,less,scss}' -f verbose --fix",
"prettier:ci": "prettier --check frontend/ public/",
"prettier:fix": "prettier --write frontend/ public/"
},
"devDependencies": {
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.3.0",
"postcss-less": "^6.0.0",
"prettier": "^2.6.2",
"stylelint": "^14.7.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^3.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:archivesspace/archivesspace.git"
},
"license": "ECL-2.0"
}