-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.59 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
{
"name": "okkindred_typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --mode production --dest dist --target app",
"test:unit": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service test:unit",
"lint": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service lint"
},
"dependencies": {
"axios": "^0.27.2",
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.22.0",
"core-js": "^3.22.8",
"jcrop": "https://github.com/JustinWingChungHui/Jcrop.git#justin",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.3",
"open-iconic": "^1.1.1",
"photoswipe": "^4.1.3",
"sha1": "^1.1.1",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-config": "^1.0.0",
"vue-i18n": "^8.27.1",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.4",
"vue2-editor": "^2.10.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/leaflet": "^1.7.11",
"@types/leaflet.markercluster": "^1.5.0",
"@types/photoswipe": "^4.1.2",
"@types/sha1": "^1.1.3",
"@types/vue2-editor": "^2.6.1",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-typescript": "^4.5.13",
"@vue/cli-plugin-unit-jest": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/test-utils": "1.3.0",
"babel-core": "7.0.0-bridge.0",
"cloudfront-invalidate-cache": "^2.2.0",
"s3-deploy": "^1.4.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5",
"vue-template-compiler": "^2.6.14"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue",
"ts",
"tsx"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"globals": {
"ts-jest": {
"babelConfig": true
}
}
}
}