forked from cloudwan/gohan_webui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.23 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
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
106
107
108
109
110
111
112
113
114
115
{
"name": "gohan-webui",
"version": "1.19.2",
"description": "WebUI for Gohan project",
"main": "./app/index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"test-watch": "npm test -- --watch",
"test-cover": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"build": "rm -rf ./dist/ && NODE_ENV=production ./node_modules/.bin/webpack --colors --progress --bail",
"build-dev": "rm -rf ./dist/ && ./node_modules/.bin/webpack -d --colors --display-reasons --progress --bail",
"dev-server": "rm -rf ./dist/ && ./node_modules/.bin/webpack-dev-server -d --inline --colors --progress",
"lint": "./node_modules/.bin/eslint `find ./app/ -name '*.js'`"
},
"repository": {
"type": "git",
"url": "git@github.com:cloudwan/gohan_webui.git"
},
"author": "",
"contributors": [
{
"name": "Kamil Stepczuk",
"email": "k.stepczuk@hotmail.com"
},
{
"name": "Toshiyuki Hayashi",
"email": "hayashi@ntti3.com"
},
{
"name": "Adam Baszak",
"email": "adambaszak@gmail.com"
},
{
"name": "Nachi Ueno",
"email": "nati.ueno@gmail.com"
},
{
"name": "Daisuke Morita",
"email": "morita.daisuke@ntti3.com"
},
{
"name": "Katarzyna Fokow",
"email": "sealionkat@gmail.com"
},
{
"name": "Iwasaki Yudai",
"email": "yudai.iwasaki@ntti3.com"
},
{
"name": "Tomasz Swirski",
"email": "tomasz.swirski@codilime.com"
}
],
"license": "Apache-2.0",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.5.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-polyfill": "^6.20.0",
"babel-preset-babili": "0.0.9",
"babel-register": "^6.18.0",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"chai-backbone": "^0.9.4",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"eslint": "^3.10.1",
"eslint-plugin-babel": "^3.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"git-rev-sync": "^1.8.0",
"html-webpack-plugin": "^2.0.4",
"image-webpack-loader": "^3.0.0",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"jsdom": "^9.4.1",
"jsdom-global": "^2.0.0",
"json-loader": "^0.5.4",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"lodash": "^4.17.1",
"mocha": "^3.1.2",
"mocha-junit-reporter": "^1.13.0",
"mock-local-storage": "^1.0.2",
"node-sass": "^3.4.2",
"null-loader": "^0.1.1",
"process": "^0.11.9",
"proxyquire": "^1.7.4",
"sass-loader": "^4.0.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"underscore-template-loader": "^0.7.3",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"ace-builds": "^1.2.2",
"backbone": "^1.3.2",
"backbone-forms": "^0.14.1",
"bootstrap": "^3.3.6",
"bootstrap-dialog": "^1.34.6",
"bootstrap-select": "^1.11.2",
"font-awesome": "^4.5.0",
"jquery": "^2.2.4",
"jquery-ui": "^1.10.5",
"js-yaml": "^3.5.5",
"spinkit": "^1.2.5",
"underscore": "^1.8.3",
"whatwg-fetch": "^2.0.0"
}
}