-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (52 loc) · 1.59 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
{
"name" : "@lsphillips/cv",
"version" : "1.0.0",
"type" : "module",
"description" : "The source code for the CV of Luke S. Phillips.",
"author" : "Luke Phillips",
"dependencies" :
{
"moment" : "2.30.1",
"markdown-it" : "14.1.0"
},
"devDependencies" :
{
"webpack" : "5.96.1",
"webpack-cli" : "5.1.4",
"webpack-dev-server" : "5.1.0",
"webpack-watch-files-plugin" : "1.2.1",
"html-webpack-plugin" : "5.6.3",
"css-minimizer-webpack-plugin" : "7.0.0",
"mini-css-extract-plugin" : "2.9.2",
"copy-webpack-plugin" : "12.0.2",
"terser-webpack-plugin" : "5.3.10",
"css-loader" : "7.1.2",
"less-loader" : "12.2.0",
"babel-loader" : "9.2.1",
"handlebars-loader" : "1.7.3",
"less" : "4.2.0",
"js-yaml" : "4.1.0",
"core-js" : "3.39.0",
"@babel/core" : "7.26.0",
"@babel/preset-env" : "7.26.0",
"eslint" : "8.57.1",
"eslint-plugin-import" : "2.31.0",
"eslint-plugin-promise" : "6.6.0",
"eslint-plugin-node" : "11.1.0",
"@stylistic/eslint-plugin-js" : "1.8.1",
"eslint-config-protect-me-from-my-stupidity" : "10.1.1"
},
"scripts" :
{
"build" : "webpack",
"test" : "eslint \"**/*.js\" --ignore-path .gitignore",
"start" : "webpack serve --compress --port 1992 --history-api-fallback --mode development --devtool source-map",
"obfuscate-email" : "node ./tools/obfuscate-email.js"
},
"repository" :
{
"type" : "git",
"url" : "https://github.com/lsphillips/cv.git"
},
"private" : true
}