-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.22 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
{
"name": "data-manager",
"version": "0.0.1",
"description": "A tool to help manage the data in the digital land platform",
"scripts": {
"copy:css": "rsync -ar src/css/vendor/ application/static/stylesheets/vendor",
"copy:js": "rsync -ar src/javascripts/vendor/ application/static/javascripts/vendor",
"copy": "npm-run-all --parallel copy:*",
"flask": "flask run",
"watch:assets": "npm run nps watch.assets",
"watch:pages": "npm run nps watch.pages",
"watch": "npm-run-all --parallel watch:*",
"nps": "nps -c ./node_modules/digital-land-frontend/package-scripts.js",
"postinstall": "npm run nps copy.javascripts && npm run nps build.stylesheets && npm run nps build.javascripts && npm run copy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-land/data-manager"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/digital-land/data-manager/issues"
},
"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"
},
"engines": {
"node": "16.x"
}
}