-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.11 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
62
63
64
65
66
{
"name": "hapipal.com",
"version": "1.0.0",
"description": "Site for hapi pal",
"author": "Devin Ivy <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"engines": {
"node": ">=12 <15"
},
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"start": "node server",
"test": "lab -a @hapi/code -L",
"lint": "eslint .",
"prebuild:css": "node-sass lib/public/css/main.scss lib/public/css/main.build.css --source-map true --include-path node_modules && postcss lib/public/css/main.build.css --replace --use autoprefixer --map",
"build:css": "postcss lib/public/css/main.build.css -o lib/public/css/main.build.min.css --use cssnano --no-map",
"prebuild:js": "browserify lib/public/js/main.js -o lib/public/js/main.build.js -d -t [ babelify --presets [ @babel/preset-env ] ]",
"build:js": "uglifyjs lib/public/js/main.build.js -o lib/public/js/main.build.min.js",
"build": "npm run build:css && npm run build:js"
},
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/bounce": "2.x.x",
"@hapi/glue": "8.x.x",
"@hapi/hapi": "20.x.x",
"@hapi/inert": "6.x.x",
"@hapi/somever": "3.x.x",
"@hapi/vision": "6.x.x",
"@hapi/wreck": "17.x.x",
"@hapipal/confidence": "6.x.x",
"@hapipal/haute-couture": "4.x.x",
"@hapipal/schmervice": "2.x.x",
"@hapipal/toys": "3.x.x",
"dotenv": "8.x.x",
"exiting": "6.x.x",
"handlebars": ">=4.7.6 <5",
"joi": "17.x.x",
"require-dir": "1.x.x"
},
"devDependencies": {
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"@hapi/code": "8.x.x",
"@hapi/eslint-config-hapi": "13.x.x",
"@hapi/eslint-plugin-hapi": "4.x.x",
"@hapi/lab": "24.x.x",
"@hapipal/hpal": "3.x.x",
"@hapipal/hpal-debug": "2.x.x",
"@primer/css": "15.x.x",
"autoprefixer": "10.x.x",
"babelify": "10.x.x",
"browser-sync": "^2.26.14",
"browserify": "17.x.x",
"cssnano": "4.x.x",
"eslint": "7.x.x",
"hammerjs": "2.x.x",
"node-sass": ">=4.14.1 <5",
"postcss": "8.x.x",
"postcss-cli": "8.x.x",
"scroll-into-view-if-needed": "2.x.x"
}
}