-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 2.21 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
{
"name": "rcce-community-feedback",
"version": "1.0.0",
"description": "Risk Communication and Community Engagement - Community feedback data visualisation based on the IFRC coding framework.",
"main": "index.js",
"scripts": {
"start": "http-server ./dist -c-1 -p 3000",
"scss": "node-sass -o dist/css src/scss/",
"watch:data": "onchange 'src/data/*' -- npm run build:data",
"watch:config": "onchange 'src/config/*' -- npm run build:config",
"watch:html": "onchange 'src/*.html' -- npm run build:html",
"watch:css": "onchange 'src/scss/*.scss' -- npm run build:css",
"watch:js": "onchange 'src/js/*.js' -- npm run build:js",
"watch:assets": "onchange 'src/assets/**/*.*' -- npm run build:assets",
"watch": "npm-run-all --parallel watch:*",
"concat:js": "mkdir -p dist/js && concat -o dist/js/bundle.js ./app.js src/js/*.js",
"build:data": "mkdir -p dist/data/ && cp src/data/* dist/data/",
"build:config": "mkdir -p dist/config/ && cp src/config/* dist/config/",
"build:html": "mkdir -p dist && cp src/*.html dist/",
"build:css": "mkdir -p dist/css && npm run scss",
"build:js": "mkdir -p dist/js && cp src/js/*.js dist/js",
"build:assets": "mkdir -p dist/assets && cp -r src/assets/ dist/assets/",
"prebuild": "rm -rf ./dist",
"build": "npm-run-all --parallel build:*",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndongamadu/rcce-community-feedback.git"
},
"author": "Amadu Ndong & Vincent Turmine",
"license": "ISC",
"bugs": {
"url": "https://github.com/ndongamadu/rcce-community-feedback/issues"
},
"dependencies": {
"browserify": "^16.2.3",
"browserify-css": "^0.15.0",
"concat": "^1.0.3",
"gh-pages": "^3.2.3",
"http-server": "^0.12.1",
"jquery": "^3.5.0",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^6.0.0",
"uglify-es": "^3.3.9"
},
"devDependencies": {},
"homepage": "https://ndongamadu.github.io/rcce-community-feedback/"
}