-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "staticpack",
"description": "A reusable development environment for a 100% static website or template.",
"repository": "https://github.com/antoine-amara/staticpack",
"version": "0.7.0",
"author": "Antoine Amara <[email protected]>",
"license": "GPLv3.0",
"private": true,
"scripts": {
"release": "standard-version",
"release-github": "conventional-github-releaser -p angular",
"serve": "yarn build && http-server ./dist -a 0.0.0.0 -p 3000",
"serve:dev": "webpack serve --config webpack.dev.js",
"package": "rm -f website.zip && yarn build && cd dist/ && bestzip ../website.zip *",
"build": "webpack --config webpack.prod.js",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint ./src/js/*.js",
"lint:css": "stylelint 'src/css/*.css'",
"lint:fix": "yarn lint:js:fix && yarn lint:css:fix",
"lint:js:fix": "eslint --fix ./src/js/*.js",
"lint:css:fix": "stylelint --fix 'src/css/*.css'",
"format": "prettier --check src",
"format:fix": "prettier --write src",
"test": "jest --config=./jest.config.js src/",
"analyze-bundle": "yarn --silent build --profile --json > stats.json && webpack-bundle-analyzer stats.json ./dist/ -O -h 0.0.0.0 -p 9042",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"bestzip": "^2.2.0",
"clean-webpack-plugin": "^4.0.0",
"conventional-github-releaser": "^3.1.5",
"copy-webpack-plugin": "^10.2.4",
"core-js": "^3.21.0",
"css-loader": "^6.7.0",
"cssnano": "^5.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"file-loader": "^6.2.0",
"html-webpack-inline-svg-plugin": "^2.1.1",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.0",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.6.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss": "^8.4.7",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.2",
"postcss-reporter": "^7.0.5",
"prettier": "2.5.1",
"standard-version": "^9.3.2",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0",
"husky": "^7.0.0"
},
"resolutions": {
"follow-redirects": "^1.14.8",
"nth-check": "^2.0.1",
"semver-regex": "^3.1.3",
"axios": "^0.21.2",
"trim-newlines": "^3.0.1",
"dot-prop": "^4.2.1"
}
}