This repository has been archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (62 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"prepare": "snowpack --stat",
"snowpack": "snowpack",
"test": "jest --config jest.config.js --verbose",
"dev": "node ./scripts/task-runner/tasks.js serve",
"build": "node ./scripts/task-runner/tasks.js build",
"build:clean": "node ./scripts/task-runner/tasks.js build:clean",
"runner": "node ./scripts/task-runner/tasks.js",
"postinstall": "husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^12.1.4",
"babel-jest": "^27.4.2",
"babel-minify": "^0.5.1",
"browser-sync": "^2.27.5",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"core-js": "^3.19.3",
"cssnano": "^5.0.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"imagemin-lint-staged": "^0.4.0",
"jest": "^27.4.7",
"lint-staged": "^11.1.2",
"ncp": "^2.0.0",
"postcss": "^8.2.10",
"postcss-dir-pseudo-class": "^5.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-import": "^14.0.2",
"postcss-load-config": "^3.1.0",
"postcss-logical": "^5.0.0",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^7.0.2",
"postcss-retina-bg-img": "^5.0.1",
"prettier": "^2.5.1",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"snowpack": "^1.7.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^4.0.0",
"stylelint-prettier": "^1.2.0",
"svg-sprite": "^1.5.2",
"uglify-es": "^3.3.9"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}