-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"name": "d3ward",
"version": "2.0.0",
"description": "d3ward - Portfolio",
"scripts": {
"dev": "webpack serve --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"purge": "node config/purgecss.mjs",
"format": "prettier --write '**/*.{js,ts}'",
"lint": "eslint 'src/**/*.{js,ts}' && echo 'Linting complete!'",
"lint-fix": "eslint 'src/**/*.{js,ts}' --fix"
},
"author": "Eduard Ursu",
"license": "(CC BY-NC-SA 4.0)",
"dependencies": {
"a11y-dialog": "^8.0.4",
"shufflejs": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-loader": "^9.1.3",
"chalk": "^5.3.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^6.8.1",
"ejs": "^3.1.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.1.1",
"purgecss": "^5.0.0",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"template-ejs-loader": "^0.9.4",
"webpack": "^5.105.4",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.1",
"webpack-merge": "^5.10.0"
}
}