forked from nm-examples/wagtail-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.51 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.51 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
{
"name": "wagtail-starter-kit",
"version": "1.0.0",
"description": "A starter kit for Wagatil CMS",
"main": "index.js",
"scripts": {
"styles": "sass static_src/scss:static_compiled/css",
"styles:prod": "concurrently \"npm run styles -- --style=compressed\"",
"styles:watch": "concurrently \"npm run styles -- --style=expanded --watch\"",
"scripts": "esbuild --bundle --sourcemap static_src/js/app.js --outfile=static_compiled/js/app.js",
"scripts:prod": "concurrently \"npm run scripts -- --minify\"",
"scripts:watch": "concurrently \"npm run scripts -- --watch\"",
"images": "node scripts/images.js",
"clean": "rm -rf static_compiled",
"server": "node scripts/server.js",
"build": "concurrently \"npm run styles:prod\" \"npm run scripts:prod\" \"npm run images\"",
"start": "concurrently \"npm run clean\" \"npm run styles:watch\" \"npm run scripts:watch\" \"npm run images\" \"npm run server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wagtail-examples/wagtail-starter-kit.git"
},
"keywords": [
"wagtail"
],
"author": "Nick Moreton <nickmoreton@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wagtail-examples/wagtail-starter-kit/issues"
},
"homepage": "https://github.com/wagtail-examples/wagtail-starter-kit#readme",
"devDependencies": {
"@picocss/pico": "^2.0.6",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.2",
"esbuild": "^0.24.2",
"sass": "1.76",
"sharp": "^0.33.5"
}
}