forked from 6aika/sixodp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.07 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
{
"name": "sixodp",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "sudo nosetests --ckan --with-pylons=/etc/ckan/default/test-core.ini ckan ckanext",
"watch-js": "watch 'npm run browserify' shared/js",
"browserify": "browserify shared/js/ckan.js -o ckanext/ckanext-sixodp/ckanext/sixodp/fanstatic/javascript/app.js && browserify shared/js/cms.js -o sixodp/app.js",
"watch-sass": "watch 'npm run build' ./shared/scss",
"build": "run-p build:* browserify",
"build:ckan": "sass ./shared/scss/main.scss ckanext/ckanext-sixodp/ckanext/sixodp/fanstatic/css/sixodp_theme.css",
"build:cms": "sass ./shared/scss/cms.scss sixodp/app.css",
"dev": "run-p watch-sass watch-js",
"postinstall": "run-p build browserify"
},
"author": "Mikko Nieminen",
"license": "ISC",
"devDependencies": {
"browserify": "^16.5.2",
"eyeglass": "^3.0.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"watch": "^1.0.2",
"sass": "^1.55.0"
},
"dependencies": {
"bootstrap-sass": "^3.4.1",
"object-fit-images": "^3.2.4"
}
}