-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 879 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
28
29
{
"name": "aggro",
"description": "running cron all day",
"author": "Jason Morris",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/jsnmrs/aggro.git"
},
"scripts": {
"build": "npm run css",
"css": "npm run prettier && npm run stylelint && npm run postcss",
"postinstall": "npm run build",
"postcss": "postcss \"public/css/*.css\" --no-map --dir \"public/dist\"",
"prettier": "prettier --write \"public/css/*.css\"",
"stylelint": "stylelint \"public/css/*.css\" --fix",
"test": "npm run prettier && npm run stylelint"
},
"devDependencies": {
"@double-great/stylelint-a11y": "3.0.3",
"autoprefixer": "10.4.20",
"cssnano": "7.0.6",
"postcss": "8.5.1",
"postcss-cli": "11.0.0",
"prettier": "3.4.2",
"stylelint": "16.14.1",
"stylelint-config-standard": "37.0.0"
}
}