-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.55 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
{
"name": "local-plans-explorer",
"version": "1.0.0",
"description": "Application for exploring and modifying local plans specification data",
"engines": {
"node": "18.x"
},
"scripts": {
"flask": "flask run",
"watch": "npm-run-all --parallel watch:*",
"watch:assets": "npm run nps watch.assets",
"watch:images": "npx chokidar './assets/images/**/*.{png,ico,svg,jpg,jpeg,webp}' -c 'npm run copy:images'",
"nps": "nps -c ./node_modules/digital-land-frontend/package-scripts.js",
"copy:images_shared": "npm run nps copy.images",
"copy:images_govuk": "npm run nps copy.govukAssets",
"copy:images_local": "npx copyfiles src/images/**/*.{png,ico,svg,jpg,jpeg,webp} application/static -u 2",
"copy:images": "run-s copy:images_*",
"copyjs": "rsync -ar src/javascripts/ application/static/javascripts",
"postinstall": "npm run copyjs && npm run nps copy.javascripts && npm run nps build.stylesheets && npm run nps build.javascripts",
"start": "run-p watch flask"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-land/local-plans-explorer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/digital-land/local-plans-explorer/issues"
},
"homepage": "https://github.com/digital-land/local-plans-explorer#readme",
"dependencies": {
"digital-land-frontend": "https://gitpkg.now.sh/digital-land/digital-land-frontend/package?main",
"govuk-frontend": "^4.0.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"standardx": "^7.0.0"
}
}