-
Notifications
You must be signed in to change notification settings - Fork 803
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.73 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.73 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "modular-admin-html",
"version": "2.0.0-alpha",
"description": "ModularAdmin: Free Dashboard Theme; html version",
"repository": {
"type": "git",
"url": "https://github.com/modularcode/modular-admin-html.git"
},
"author": "ModularCode",
"license": "MIT",
"bugs": {
"url": "https://github.com/modularcode/modular-admin-html/issues"
},
"homepage": "https://github.com/modularcode/modular-admin-html",
"scripts": {
"dev": "npm run clean && (npm run assets:dev | npm run html:dev | npm run bundle:dev)",
"start": "npm run build",
"build": "npm run clean && (npm run assets:prod | npm run html:prod | npm run bundle:prod)",
"deploy": "cross-env PUBLIC_PATH='/' npm run build && echo modular-admin-html.modularcode.io > ./dist/CNAME && gh-pages -d dist --repo git@github.com:modularcode/modular-admin-html-demo.git --branch master",
"assets:dev": "cpx \"src/_assets/**/*\" dist/bundle --watch",
"assets:prod": "cpx \"src/_assets/**/*\" dist/bundle ",
"html:dev": "cross-env NODE_ENV=development gulp html:watch --gulpfile tools/gulpfile.js",
"html:prod": "cross-env NODE_ENV=production gulp html --gulpfile tools/gulpfile.js",
"bundle:dev": "cross-env NODE_ENV=development webpack-dev-server --config tools/webpack.config.dev.js",
"bundle:prod": "cross-env NODE_ENV=production webpack --config tools/webpack.config.prod.js",
"lint": "eslint --config .eslintrc \"src/**/*.js\"",
"lint:fix": "eslint --config .eslintrc \"src/**/*.js\" --fix",
"clean": "rimraf dist",
"prebuild": "npm run clean # clear dist directory",
"postinstall": "opencollective postinstall"
},
"dependencies": {
"animate.css": "^3.5.2",
"bootstrap": "4.0.0-beta.2",
"chart.js": "^2.7.1",
"color": "^2.0.1",
"color-convert": "^1.9.1",
"color-string": "^1.5.2",
"cross-env": "^5.1.1",
"font-awesome": "^4.7.0",
"gh-pages": "^1.1.0",
"jquery": "^3.2.1",
"jquery-sparkline": "^2.4.0",
"material-colors": "^1.2.5",
"morris.js": "^0.5.0",
"opencollective": "^1.0.3",
"pixeden-stroke-7-icon": "^1.2.3",
"popper.js": "1.12.3",
"quill": "^1.3.5",
"raphael": "^2.2.7"
},
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.1",
"cpx": "^1.5.0",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"dotenv": "^4.0.0",
"eslint": "^4.13.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"front-matter": "^2.3.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"gulp": "^3.9.0",
"gulp-compile-handlebars": "^0.6.1",
"gulp-data": "^1.2.0",
"gulp-flatten": "^0.3.1",
"gulp-front-matter": "^1.2.3",
"gulp-gh-pages": "^0.5.2",
"gulp-hb": "^6.0.2",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-prettify": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.4",
"handlebars": "^4.0.11",
"handlebars-layouts": "^3.1.0",
"handlebars-registrar": "^1.5.2",
"node-sass": "^4.7.2",
"nodemon": "^1.13.3",
"postcss-css-variables": "0.8.0",
"postcss-cssnext": "3.0.2",
"postcss-custom-properties": "^6.2.0",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.9",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sass-resources-loader": "^1.3.1",
"string-replace-loader": "^1.3.0",
"style-loader": "^0.19.1",
"through2": "^2.0.0",
"url-loader": "^0.6.2",
"vinyl": "^2.1.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/modular-admin-html",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}