-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.44 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
47
48
49
50
51
52
{
"name": "personalwebsite",
"version": "1.0.0",
"description": "Building my own website with HTML, CSS and Javascript as a Single Page Application",
"main": "server.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "webpack --config build/config.development.js",
"prod": "webpack --config build/config.production.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rouche01/personalWebsite.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rouche01/personalWebsite/issues"
},
"homepage": "https://github.com/Rouche01/personalWebsite#readme",
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.4.1",
"dotenv": "^8.2.0",
"font-awesome": "^4.7.0",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"handlebars-loader": "^1.7.1",
"jquery": "^3.5.0",
"markdown-it": "^10.0.0",
"popper.js": "^1.16.0",
"vanilla-router": "^1.2.7"
},
"devDependencies": {
"css-loader": "^3.4.2",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"handlebars-webpack-plugin": "^1.8.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.1.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-merge": "^4.2.2"
}
}