forked from spatie/dashboard.spatie.be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.97 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
{
"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",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint resources/assets/css/**/**.css --fix",
"lint:js": "eslint resources/assets/js --ext .js,.vue"
},
"dependencies": {
"axios": "^0.16.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"chai": "^3.5.0",
"cross-env": "^5.0.1",
"eslint": "^3.7.1",
"eslint-config-spatie": "^1.2.2",
"eslint-plugin-html": "^1.5.3",
"eslint-plugin-vue": "^0.1.1",
"import-glob-loader": "^1.1.0",
"jest": "^20.0.4",
"laravel-echo": "^1.0.1",
"laravel-mix": "0.*",
"lodash": "^4.17.4",
"mockdate": "^2.0.1",
"moment": "^2.13.0",
"moment-duration-format": "^1.3.0",
"moment-timezone": "^0.5.13",
"node-sass": "^4.5.3",
"pusher-js": "^3.2.1",
"stringz": "^0.2.1",
"svg-url-loader": "^2.0.2",
"twemoji": "^2.3.0",
"vue": "^2.0.1",
"vue-resource": "^1.0.3",
"vue-save-state": "^1.1.0"
},
"jest": {
"testRegex": "test.js$"
},
"devDependencies": {
"stylelint": "^7.11.1",
"stylelint-config-standard": "^16.0.0"
}
}