-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 Bytes
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
{
"name": "learning-template",
"license": "MIT",
"scripts": {
"test": "jest --bail --findRelatedTests **/*.js",
"build": "postcss input.css -o output.css --watch",
"lint": "prettier --write *.{js,css,html,scss,json,md,ts,tsx}",
"es-check": "es-check es5 './**/*.js' --not=node_modules"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^10.3.4",
"cssnano": "^5.0.8",
"es-check": "^6.0.0",
"husky": "^4.3.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"postcss": "^8.3.11",
"postcss-cli": "^8.3.1",
"postcss-coglang-stylesheets": "^0.0.0",
"postcss-mixins": "^8.1.0",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"jest --bail --findRelatedTests",
"es-check es5 './**/*.js' --not=node_modules"
],
"*.{js,css,html,scss,json,md,ts,tsx}": "prettier --write"
}
}