-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.93 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "asb-mobile",
"version": "0.1.0-preview.3",
"description": "Ark Smart Breeding for Mobile",
"author": "VolatilePulse",
"private": true,
"repository": "github:VolatilePulse/ASBMobile",
"bugs": {
"url": "https://github.com/VolatilePulse/ASBMobile/issues"
},
"homepage": "https://github.com/VolatilePulse/ASBMobile#readme",
"main": "src/main.ts",
"scripts": {
"dev": "node scripts/check-firebase-server.js asbmobile-dev && vue-cli-service serve",
"build": "vue-cli-service build",
"liveserver": "npm-run-all -s liveserver:notice --parallel firebase liveserver:httpsproxy",
"liveserver:notice": "echo !!! Use address: https://localhost:8888/ !!!",
"liveserver:httpsproxy": "ws -c scripts/liveproxy.conf.js",
"liveserver:server": "ws -c scripts/liveserver.conf.js",
"firebase": "firebase serve",
"test:all": "vue-cli-service test:unit tests/.*\\.spec\\.ts --testPathIgnorePatterns /perf/",
"test:unit": "vue-cli-service test:unit tests/unit/.*\\.spec\\.ts",
"test:perf": "vue-cli-service test:unit tests/perf/.*\\.spec\\.ts",
"test:archive": "vue-cli-service test:unit tests/extraction/archive.*\\.spec\\.ts --reporters ./scripts/jest-dino-test-reporter.js",
"lint": "vue-cli-service lint",
"values": "node scripts/make_values.js",
"gencert": "bash scripts/generate-ssl.sh",
"release": "node --experimental-modules scripts/release.mjs -l"
},
"dependencies": {
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"color-hash": "^1.0.3",
"cuid": "^2.1.1",
"easysax": "^0.3.2",
"firebase": "^5.3.1",
"firebaseui": "^3.3.0",
"interval-arithmetic": "^0.6.10",
"interval-arithmetic-eval": "^0.4.6",
"local-storage-fallback": "^4.1.1",
"lodash-es": "^4.17.10",
"math-float32-nextafter": "^1.0.0",
"register-service-worker": "^1.5.1",
"vue": "github:coldino/vue#event-handler-errors-built",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/glob": "^5.0.35",
"@types/jest": "^23.1.4",
"@types/lodash-es": "^4.17.1",
"@types/webpack-env": "^1.13.6",
"@vue/cli-plugin-babel": "^3.0.0",
"@vue/cli-plugin-pwa": "^3.0.0",
"@vue/cli-plugin-typescript": "^3.0.0",
"@vue/cli-plugin-unit-jest": "^3.0.0",
"@vue/cli-service": "^3.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"glob": "^7.1.2",
"inquirer": "^5.2.0",
"linq": "^3.1.0",
"local-web-server": "^2.6.0",
"marked": "^0.3.19",
"moment": "^2.22.2",
"node-sass": "^4.9.3",
"npm-run-all": "^4.1.3",
"performance-now": "^2.1.0",
"sass-loader": "^6.0.6",
"semver": "^5.5.0",
"ts-jest": "^23.0.0",
"typescript": "^3.0.0",
"vue-template-compiler": "^2.5.17-beta.0",
"webpack-bundle-analyzer": "^2.13.1",
"yargs": "^11.1.0"
},
"babel": {
"presets": [
"@vue/app"
],
"plugins": [
"lodash"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"tsx",
"jsx"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/"
},
"browserslist": [
"> 7%",
"last 1 ChromeAndroid versions",
"last 2 iOS versions",
"last 1 Samsung versions",
"last 1 Firefox version",
"last 1 Edge versions",
"last 1 Safari versions",
"last 2 Chrome versions"
]
}