-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.16 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": "tasks-htmlcss",
"version": "1.0.0",
"description": "Course Materials",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --no-warnings --ignore=node_modules/** **/*.test.js",
"build": "postcss component/index.css -o build/index.css"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,css,scss}": [
"prettier --write",
"git add"
]
},
"keywords": [],
"author": "Dmitrii Goroshchuk",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.7",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"cssnano": "^5.1.7",
"mocha": "^7.1.2",
"postcss": "^8.4.13",
"postcss-cli": "^9.1.0",
"postcss-discard-comments": "^5.1.1",
"postcss-import": "^14.1.0",
"postcss-nested": "^5.0.6",
"postcss-nested-import": "^0.2.0",
"postcss-scss": "^4.0.4",
"postcss-strip-inline-comments": "^0.1.5",
"postcss-url": "^10.1.3",
"precss": "^4.0.0",
"sass": "^1.51.0",
"strip-css-comments": "^5.0.0"
},
"dependencies": {
"highlight.js": "^11.5.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}