forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.18 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
{
"name": "metabase",
"private": true,
"version": "0.0.0",
"description": "Metabase Analytics Report Server",
"repository": "https://github.com/metabase/metabase-init",
"license": "private",
"engines": {
"node": "0.10.25"
},
"dependencies": {
"ace-builds": "git://github.com/ajaxorg/ace-builds#v1.2.0",
"angular": "1.2.28",
"angular-animate": "1.2.28",
"angular-cookie": "git://github.com/ivpusic/angular-cookie#v4.0.6",
"angular-cookies": "1.2.28",
"angular-gridster": "0.11.7",
"angular-http-auth": "1.2.1",
"angular-readable-time": "git://github.com/wildlyinaccurate/angular-readable-time#0.1.1",
"angular-resource": "1.2.28",
"angular-route": "1.2.28",
"angular-sanitize": "1.2.28",
"angular-ui-ace": "0.2.3",
"angular-ui-bootstrap": "^0.12.1",
"angular-xeditable": "git://github.com/vitalets/angular-xeditable#0.1.9",
"classnames": "^2.1.3",
"crossfilter": "^1.3.12",
"d3": "^3.5.6",
"d3-tip": "^0.6.7",
"dc": "^2.0.0-beta.14",
"fixed-data-table": "^0.4.2",
"humanize-plus": "^1.5.0",
"inflection": "^1.7.1",
"jquery": "^2.1.4",
"moment": "^2.10.6",
"react": "^0.13.3",
"react-onclickoutside": "^0.2.5",
"tether": "^1.1.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"angular-mocks": "1.2.28",
"babel": "^5.4.7",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.14",
"babel-loader": "^5.1.3",
"css-loader": "^0.14.4",
"cssnext-loader": "^1.0.1",
"eslint": "^0.22.1",
"eslint-loader": "^0.12.0",
"eslint-plugin-react": "^2.5.0",
"extract-text-webpack-plugin": "^0.8.1",
"glob": "^5.0.10",
"html-webpack-plugin": "git://github.com/tlrobinson/html-webpack-plugin.git#562acca0363224f156c0bcc87d064a1e2f72611c",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.4.2",
"karma-jasmine": "^0.3.5",
"karma-webpack": "^1.7.0",
"ng-annotate-webpack-plugin": "^0.1.2",
"node-libs-browser": "^0.5.2",
"protractor": "^2.1.0",
"react-hot-loader": "^1.2.8",
"shelljs": "^0.2.6",
"style-loader": "^0.12.3",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.10.1",
"webpack-postcss-tools": "^1.1.1"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js --ignore-pattern 'resources/frontend_client/app/dist/**/*' resources/frontend_client/app",
"test": "./node_modules/karma/bin/karma start resources/frontend_client/test/karma.conf.js --single-run",
"test-watch": "./node_modules/karma/bin/karma start resources/frontend_client/test/karma.conf.js --auto-watch",
"test-e2e": "./node_modules/protractor/bin/webdriver-manager update && ./node_modules/protractor/bin/protractor resources/frontend_client/test/protractor-conf.js",
"build": "./node_modules/webpack/bin/webpack.js",
"build-watch": "./node_modules/webpack/bin/webpack.js --watch",
"start": "lein ring server",
"start-hot": "METABASE_ENV=hot ./node_modules/webpack/bin/webpack.js && METABASE_ENV=hot node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --inline --content-base resources/frontend_client"
}
}