-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "neiesc.github.io",
"version": "0.1.0",
"description": "My Portfolio and blog.",
"keywords": [
"site",
"blog",
"portfolio"
],
"scripts": {
"serve": "npm run lint && webpack serve --config config/webpack.dev.js",
"build": "npm run lint && webpack --config config/webpack.prod.js",
"prettify": "prettier src/** --write",
"lint": "eslint src"
},
"private": true,
"repository": "[email protected]:neiesc/neiesc.github.io.git",
"author": {
"name": "Edinei Cavalcanti",
"email": "[email protected]",
"web": "https://edinei.dev"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"ejs-compiled-loader": "^3.1.0",
"eslint": "^9.18.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^5.0.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"prettier": "^3.4.2",
"script-ext-html-webpack-plugin": "^2.1.5",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"particles.js": "^2.0.0"
},
"main": "src/assets/js/app.js",
"style": "src/assets/css/main.css",
"resolutions": {
"set-value": ">= 2.0.1",
"acorn": ">= 7.1.1",
"kind-of": ">= 6.0.3",
"dot-prop": ">= 5.1.1",
"node-forge": ">= 0.10.0"
}
}