-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (52 loc) · 1.78 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
52
53
54
{
"name": "flexyboard",
"version": "0.0.1",
"description": "Super-flexible admin dashboard skeleton layout with Multisidebar, Fixed or scrollable Sidebar/Footer/Header, RTL, support",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run lib:dev\" \"npm run demo:dev\" \"npm run serve\"",
"start": "npm run dev",
"serve": "static -i demo/index.html",
"lib:dev": "concurrently \"npm run lib:build\" \"npm run lib:watch\"",
"lib:test": "echo \"Error: no test specified\" && exit 1",
"lib:build": "concurrently \"npm run lib:build:sass\" \"npm run lib:build:js\"",
"lib:build:sass": "node-sass lib/flexyboard.scss dist/flexyboard.css",
"lib:build:js": "copyfiles -f lib/flexyboard.js dist",
"lib:watch": "npm run lib:watch:sass",
"lib:watch:sass": "node-sass lib/flexyboard.scss dist/flexyboard.css -w lib/",
"demo:dev": "concurrently \"npm run demo:build\" \"npm run demo:watch\"",
"demo:test": "",
"demo:build": "node-sass -r demo/ -o demo/",
"demo:watch": "node-sass -r demo/ -o demo/ -w /"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modularcode/flexyboard.git"
},
"keywords": [
"layout",
"dashboard",
"admin",
"sidebar",
"multisidebar",
"fixed",
"scrollable",
"fluid",
"rtl"
],
"author": "Gevorg Harutyunyan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/modularcode/flexyboard/issues"
},
"homepage": "https://github.com/modularcode/flexyboard#readme",
"dependencies": {},
"devDependencies": {
"concurrently": "^3.4.0",
"copyfiles": "^1.2.0",
"node-sass": "^4.5.0",
"node-static": "^0.7.9",
"nodemon": "^1.11.0",
"watch": "^1.0.2"
}
}