-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 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
{
"name": "cockpit-next",
"version": "0.6.1",
"license": "MIT",
"scripts": {
"build": "npm run build-style && npm run build-components",
"build-style": "lessc assets/app/css/style.less > assets/app/css/style.css -x",
"build-components": "riot modules/Cockpit/assets/components modules/Cockpit/assets/components.js",
"watch": "npm run watch-style & npm run watch-components",
"watch-style": "watch-run -i -p 'assets/app/css/**/*.less' npm run build-style",
"watch-components": "watch-run -i -p 'modules/Cockpit/assets/components/*.tag' npm run build-components",
"docker-init": "docker build -t cockpit/dev .",
"docker": "docker run -p 8080:80 -v $PWD:/var/www/html cockpit/dev & open http://localhost:8080/install",
"postinstall": "opencollective postinstall"
},
"devDependencies": {
"less": "^3.9.0",
"riot-cli": "^5.1.2",
"watch-run": "^1.2.4"
},
"dependencies": {
"lodash": "^4.17.13",
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/cockpit",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}