-
-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
94 lines (94 loc) · 2.62 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
{
"private": true,
"scripts": {
"dev": "mix",
"watch": "mix watch",
"hot": "mix watch --hot",
"prod": "mix --production",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint \"resources/assets/js/**\" --ext=.js --ext=.vue",
"lint:fix": "eslint \"resources/assets/js/**\" --ext=.js --ext=.vue --fix",
"start": "yarn watch"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"setupFiles": [
"<rootDir>/resources/assets/js/__tests__/utils/mockument"
],
"testPathIgnorePatterns": [
"<rootDir>/resources/assets/js/__tests__/utils/"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/resources/assets/js/$1",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"dependencies": {
"awesomplete": "^1.1.2",
"axios": "^0.21.1",
"codemirror": "^5.39.2",
"cuid": "^2.1.1",
"dayjs": "^1.10.3",
"dragula": "^3.7.2",
"easymde": "^2.6.0",
"es6-promise": "^4.1.1",
"fuzzysearch": "^1.0.3",
"highlight.js": "^10.4.1",
"local-storage": "^1.4.2",
"lodash": "^4.17.19",
"nanoid": "^1.0.1",
"qs": "^6.5.1",
"urijs": "^1.19.4",
"v-click-outside": "^1.0.4",
"vue": "^2.5.13",
"vue-collection-cluster": "^1.0.11",
"vue-feather-icons": "^4.5.0",
"vue-global-events": "^1.0.2",
"vue-input-autowidth": "^1.0.7",
"vue-js-modal": "^1.3.12",
"vue-router": "^3.0.2",
"vue2-datepicker": "^3.8.2",
"vuex": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-plugin-lodash": "^3.3.4",
"cross-env": "^5.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.0.0-beta.5",
"flush-promises": "^1.0.0",
"jest": "^24.0.0",
"laravel-mix": "^6.0.0",
"laravel-mix-purgecss": "^6.0.0",
"lodash-webpack-plugin": "^0.11.5",
"postcss": "^8.1",
"prettier": "^1.15.3",
"sass": "^1.16.1",
"sass-loader": "^7.1.0",
"tailwindcss": "^0.6.3",
"vue-jest": "4.0.0-beta.2",
"vue-loader": "^15.9.5",
"vue-template-compiler": "^2.6.0",
"vuex-mock-store": "^0.0.7",
"webpack": "^5.1.3"
}
}