-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "library",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "webpack --config webpack.server.config.js && webpack --config webpack.prod.config.js && node ./build/server.bundle.js",
"buildServer": "webpack --config webpack.server.config.js",
"buildClient": "webpack --config webpack.prod.config.js",
"buildDev": "webpack --config webpack.dev.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericatallah/library.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ericatallah/library/issues"
},
"homepage": "https://github.com/ericatallah/library#readme",
"engines": {
"node": "10.15.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"css-loader": "^3.0.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.7.0",
"mysql": "^2.17.1",
"node-fetch": "^2.6.0",
"nodemon": "^1.19.1",
"popper.js": "^1.15.0",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"handlebars-webpack-plugin": "^1.6.0",
"style-loader": "^0.23.1"
}
}