-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.62 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
{
"name": "honeycomb-website",
"version": "0.0.0",
"private": true,
"description": "Honeycomb",
"scripts": {
"audit": "node scripts/audit",
"handlebars": "node scripts/handlebars",
"honeycomb": "node scripts/honeycomb.css.js && node scripts/honeycomb.js.js && node scripts/honeycomb.img.js && node scripts/honeycomb.assets.js && node scripts/honeycomb.php.js",
"css": "postcss --no-map true --use autoprefixer -c scripts -r dist/assets/css/honeycomb.css",
"images": "cp -R src/assets/images/* dist/assets/images/",
"js": "browserify -t [babelify] src/assets/js/site.js | uglifyjs > dist/assets/js/site.min.js && echo 'JS compiled'",
"build": "npm install && npm update && node scripts/create-structure && npm run images && npm run handlebars && npm run honeycomb && npm run css && npm run js",
"watch": "watch 'npm run build' src",
"server": "node scripts/server",
"start": "npm run build && concurrently \"npm run server\" \"npm run watch\""
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"autoprefixer": "^10.4.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"concurrently": "^6.4.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"handlebars": "^4.7.7",
"honeycomb-web-toolkit": "github:red-gate/honeycomb-web-toolkit#v14.3.17",
"jquery": "^3.6.0",
"open": "^8.4.0",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.2",
"prismjs": "^1.25.0",
"sass": "^1.78.0",
"uglify-js": "^3.14.3",
"watch": "^0.13.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}