-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 4 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
{
"name": "dcas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Sarah Renner",
"license": "Closed Source",
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"tdd": "executor './vendor/bin/phpunit --color=always' --watch='**/*.php' --ignore='node_modules/' --ignore='vendor/'",
"test": "mocha-webpack --webpack-config webpack.config.js --require tests/setup.js tests/Javascript/\\*.spec.js",
"cleanup-webpack": "rm -rf .tmp/mocha-webpack/*"
},
"devDependencies": {
"@lassehaslev/executor": "^0.1.2",
"ava": "^0.19.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.26.0",
"bower": "^1.8.2",
"browser-sync": "^2.23.3",
"browser-sync-webpack-plugin": "^1.2.0",
"cross-env": "^5.1.3",
"eslint-config-spatie": "^2.0.3",
"expect": "^21.2.1",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"laravel-mix": "^1.7.2",
"mocha": "^4.1.0",
"mocha-webpack": "^0.7.0",
"postcss-easy-import": "^3.0.0",
"raw-loader": "^0.5.1",
"responsive-loader": "^0.7.0",
"sprite-loader": "^0.2.4",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"vue-template-compiler": "^2.5.13",
"vue-test-utils": "^1.0.0-beta.9",
"webpack": "^3.10.0"
},
"dependencies": {
"axios": "^0.16.2",
"bootstrap-sass": "^3.3.7",
"bourbon": "^4.3.4",
"bourbon-neat": "^1.9.0",
"bulma": "^0.2.3",
"chart.js": "^2.7.1",
"collect.js": "^3.1.2",
"commander": "^2.12.2",
"datatables": "^1.10.13",
"eslint": "^4.14.0",
"eslint-plugin-vue": "^3.14.0",
"font-awesome": "^4.7.0",
"forever": "^0.15.3",
"html5shiv": "^3.7.3",
"icheck": "^1.0.2",
"ionicons": "^3.0.0",
"jquery": "^3.2.1",
"laravel-echo": "^1.3.2",
"lodash": "^4.17.4",
"materialize": "^1.0.0",
"materialize-css": "^0.98.2",
"modernizr": "^3.5.0",
"moment": "^2.20.1",
"moxios": "^0.4.0",
"node-sass": "^4.7.2",
"normalize.css": "^5.0.0",
"pusher-js": "^4.2.2",
"respond": "^0.9.0",
"select2": "^4.0.6-rc.1",
"sinon": "^4.1.3",
"sweetalert": "^1.1.3",
"trix": "^0.11.1",
"typeahead.js": "^0.11.1",
"uglify-es": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"uglify-js": "^3.3.4",
"underscore": "^1.8.3",
"vue": "^2.5.13",
"vue-loader": "^13.6.2",
"vue-moment": "^2.2.0",
"vuex": "^2.5.0"
},
"ava": {
"require": [
"babel-register",
"./tests/Javascript/helpers/setup-browser-env.js"
],
"files": [
"./tests/Javascript/**/*.js",
"!./tests/Javascript/helpers/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": false,
"powerAssert": false,
"verbose": true
},
"babel": {
"presets": [
"es2015"
]
}
}