-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (97 loc) · 3.6 KB
/
package.json
File metadata and controls
98 lines (97 loc) · 3.6 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
{
"fullname": "bbweb",
"name": "bbweb",
"version": "0.0.1",
"main": "Gruntfile.js",
"private": true,
"dependencies": {
"@uirouter/angularjs": "^1.0.18",
"angular": "^1.7.2",
"angular-animate": "^1.7.2",
"angular-cookies": "^1.7.2",
"angular-fontawesome": "^1.0.0",
"angular-gettext": "^2.3.11",
"angular-messages": "^1.7.2",
"angular-resource": "^1.7.2",
"angular-sanitize": "^1.7.2",
"angular-smart-table": "^2.1.11",
"angular-toastr": "^2.1.1",
"angular-ui-bootstrap": "^2.5.6",
"bootstrap": "^3.3.7",
"bootstrap-ui-datetime-picker": "^2.6.3",
"es6-error": "^4.1.1",
"jquery": "^3.4.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"tv4": "^1.3.0"
},
"devDependencies": {
"angular-mocks": "^1.7.2",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.4",
"babel-plugin-angularjs-annotate": "^0.9.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"commander": "^2.15.1",
"console-table": "^0.1.2",
"console.table": "^0.10.0",
"coveralls": "^3.0.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-requirejs": "^3.2.0",
"faker": "^4.1.0",
"file-loader": "^1.1.11",
"grunt": "^1.0.4",
"grunt-angular-gettext": "^2.3.9",
"html-loader": "^0.5.5",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.1.0",
"jsdoc": "^3.5.5",
"jsdoc-baseline": "https://github.com/hegemonic/baseline/tarball/master",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-failed-reporter": "0.0.3",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^1.1.0",
"karma-jasmine-jquery": "^0.1.1",
"karma-jasmine-matchers": "^3.7.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-verbose-reporter": "0.0.6",
"karma-webpack": "next",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"puppeteer": "^1.15.0",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.12.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.3.1",
"webpack-visualizer-plugin": "^0.1.11"
},
"scripts": {
"prestart": "npm install",
"pretest": "npm install",
"analyzer": "webpack --json | webpack-bundle-size-analyzer",
"dev": "webpack-dev-server --config webpack.dev.config.js --progress --client-log-level none",
"dev-build": "webpack --config webpack.dev.config.js --bail --debug --progress --profile --colors",
"dev-build-watch": "webpack --config webpack.dev.config.js --progress --profile --colors --watch",
"dev-server": "sbt run",
"dist-build": "webpack --config webpack.dist.config.js --display-modules --progress",
"jsdoc": "jsdoc --configure jsdoc.json",
"start": "webpack --config webpack.dev.config.js --profile --progress --colors",
"test": "karma start --reporters dots karma.conf.js",
"test-run": "karma run karma.conf.js",
"test-single-run": "karma start --single-run --no-auto-watch --log-level info --reporters dots karma.conf.js",
"test-coverage": "TEST_MODE=coverage karma start karma.conf.js",
"test-in-chrome": "CHROME_BIN=/usr/bin/google-chrome karma start --browsers Chrome_with_debugging --no-single-run --no-auto-watch --log-level info --reporters dots,kjhtml karma.conf.js"
}
}