This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
97 lines (97 loc) · 2.74 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
{
"name": "lessy",
"version": "1.0.0",
"description": "Projects and todos manager",
"author": "Marien Fressinaud <[email protected]>",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"build": "node build/build.js",
"test": "jest --config spec/jest.conf.js --coverage",
"lint": "eslint --ext .js,.vue src spec"
},
"dependencies": {
"actioncable": "^5.2.3",
"anchorme": "^1.1.2",
"autosize": "^3.0.21",
"chart.js": "^2.8.0",
"marked": "^0.6.2",
"moment": "^2.24.0",
"moment-range": "^3.1.1",
"moment-timezone": "^0.5.25",
"node-sass-json-importer": "^4.1.0",
"sanitize-html": "^1.20.1",
"v-tooltip": "^2.0.2",
"vue": "^2.6.10",
"vue-i18n": "^8.11.2",
"vue-router": "^2.8.1",
"vuedraggable": "^2.20.0",
"vuex": "^2.5.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^6.4.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.0.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-register": "^6.26.0",
"chalk": "^1.1.3",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.1",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"inject-loader": "^2.0.1",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^0.3.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^6.0.7",
"semver": "^5.7.0",
"shelljs": "^0.7.8",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"vue-jest": "^1.4.0",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^0.14.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"mapCoverage": true,
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}