-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.76 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
{
"name": "ajbkr-com",
"version": "0.0.0",
"engines": {
"node": "10.16.3",
"npm": "6.12.0"
},
"private": true,
"scripts": {
"copy-bootstrap": "npm run copy-bootstrap:css && npm run copy-bootstrap:js",
"copy-bootstrap:css": "cpx 'node_modules/bootstrap/dist/css/bootstrap.min.css*' public/stylesheets/",
"copy-bootstrap:js": "cpx 'node_modules/bootstrap/dist/js/bootstrap.min.js*' public/scripts/",
"copy-fonts": "cpx 'node_modules/flat-social-icons/fonts/*' public/stylesheets/fonts/",
"copy-jquery": "cpx 'node_modules/jquery/dist/jquery.min.{js,map}' public/scripts/",
"copy-popper": "cpx 'node_modules/popper.js/dist/umd/popper.min.js*' public/scripts/",
"lint": "standard --plugin html '**/*.hbs' '**/*.js' 'bin/www'",
"minify-flat-icons": "cleancss -o public/stylesheets/flat-icons.min.css --skip-rebase node_modules/flat-social-icons/flat-icons.css",
"postinstall": "npm run copy-bootstrap && npm run copy-fonts && npm run copy-jquery && npm run copy-popper && npm run minify-flat-icons",
"start": "node ./bin/www",
"test": "jasmine",
"watch": "DEBUG=ajbkr-com:* nodemon ./bin/www"
},
"dependencies": {
"@mvnu/cpx": "^1.5.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"check-links": "^1.1.8",
"clean-css-cli": "^4.3.0",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-minify-html-2": "^1.0.1",
"flat-social-icons": "0.0.1",
"hbs": "^4.0.6",
"helmet": "^3.21.1",
"jquery": "^3.4.1",
"morgan": "~1.9.1",
"popper.js": "^1.15.0",
"serve-favicon": "~2.5.0"
},
"devDependencies": {
"eslint-plugin-html": "^6.0.0",
"jasmine": "^3.5.0",
"nodemon": "^1.19.3",
"standard": "^14.3.1"
}
}