-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.63 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
{
"name": "devilsec-website",
"version": "0.7.0",
"description": "DevilSec's website.",
"author": "DevilSec",
"license": "none",
"repository": {
"type": "git",
"url": "git+https://github.com/devilsec/website.git"
},
"bugs": {
"url": "https://github.com/devilsec/website/issues"
},
"homepage": "https://github.com/devilsec/website",
"scripts": {
"lint-js": "eslint \"**/*.{js,jsx}\"",
"lint-css": "stylelint \"**/*.{css,scss}\"",
"fix-js": "npm run lint-js -- --fix",
"fix-css": "npm run lint-css -- --fix",
"lint": "npm-run-all lint-js lint-css",
"lint-fix": "npm-run-all fix-js fix-css",
"val-html": "htmlhint **/*.html",
"gen-sched": "python src/schedulegen.py",
"build": "if-env NODE_ENV=production && npm run build:prod || npm run build:dev",
"build:dev": "npm run lint-fix && webpack --config webpack.prod.js && npm run gen-sched",
"build:prod": "webpack --config webpack.prod.js && npm run gen-sched",
"watch": "webpack serve --config webpack.dev.js",
"start": "npm run watch"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"@popperjs/core": "^2.11.5",
"babel-loader": "^8.2.5",
"bootstrap": "^5.1.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"if-env": "^1.0.4",
"inject-body-webpack-plugin": "^1.3.0",
"jquery": "^3.6.0",
"lit": "^2.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.50.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"stylelint-config-twbs-bootstrap": "^3.0.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-webpack-plugin": "^3.1.1",
"htmlhint": "^1.1.4",
"postcss-cli": "^9.1.0",
"postcss-scss": "^4.0.3",
"stylelint": "^14.7.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"webpack-dev-server": "^4.8.1"
}
}