-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "library-tutorial",
"version": "1.0.0",
"description": "A web application to help organize a personal collection of books.",
"main": "app.js",
"scripts": {
"start": "webpack --config webpack.server.config.js && webpack --config webpack.client.config.js && node ./build/server.bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onclickwebdesign/library-tutorial.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/onclickwebdesign/library-tutorial/issues"
},
"homepage": "https://github.com/onclickwebdesign/library-tutorial#readme",
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"css-loader": "^3.1.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-sanitizer": "^1.0.5",
"jquery": "^3.4.1",
"mini-css-extract-plugin": "^0.8.0",
"mysql": "^2.17.1",
"node-fetch": "^2.6.0",
"popper.js": "^1.15.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-node-externals": "^1.7.2"
}
}