-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
55
56
57
58
59
{
"name": "generator-muze",
"version": "1.0.0",
"description": "A Yeoman generator to scaffold a basic charting app with MuzeJS",
"files": [
"app"
],
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --open --mode development",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chartshq/generator-muze.git"
},
"keywords": [
"yeoman-generator",
"muze",
"charts",
"scaffold",
"generator"
],
"author": "Charts.com <support@charts.com>",
"contributors": [
{
"name": "Rousan Ali",
"email": "rousan@charts.com",
"url": "https://rousan.io"
},
{
"name": "Akash Ghoswami",
"email": "akash@charts.com"
}
],
"license": "MIT",
"homepage": "https://github.com/chartshq/generator-muze#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"node-sass": "^4.9.3",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.4",
"muze": "^1.0.0"
},
"dependencies": {
"chalk": "^2.4.1",
"yeoman-generator": "^3.1.1",
"yosay": "^2.0.2"
}
}