This repository has been archived by the owner on May 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
62 lines (62 loc) · 2.5 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
{
"private": true,
"scripts_": {
"dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "jest --coverage"
},
"scripts": {
"dev": "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": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-jest": "^22.4.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"bootstrap": "^4.0.0-alpha.6",
"bootstrap-sass": "^3.3.7",
"cross-env": "^5.1.3",
"jest": "^20.0.4",
"jest-vue-preprocessor": "^1.3.1",
"laravel-mix-purgecss": "~2.1.0",
"regenerator-runtime": "^0.11.1",
"tailwindcss": "^0.4.3",
"vue": "^2.5.13"
},
"dependencies": {
"aes-js": "^3.0.0",
"autosize": "~4.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"es6-store": "^1.0.0",
"global": "^4.3.2",
"laravel-echo": "^1.3.5",
"laravel-mix": "~2.1.0",
"marked": "^0.3.17",
"moment": "^2.21.0",
"pbkdf2": "^3.0.9",
"vue-breadcrumbs": "^1.1.2",
"vue-localstorage": "~0.6.0",
"vue-markdown": "^2.1.3",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"word-count": "^0.2.2"
},
"jest": {
"testRegex": "test.js$",
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}