-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.41 KB
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
{
"name": "evinfo",
"version": "1.0.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@testing-library/jest-dom": "^5.14.1",
"@tsconfig/svelte": "^2.0.1",
"@types/jest": "^27.0.1",
"attractions": "^3.3.0",
"cross-env": "^5.2.0",
"fs-extra": "^8.1.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"rollup": "^2.55.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.37.5",
"svelte": "^3.42.2",
"svelte-chartjs": "git://github.com/SauravKanchan/svelte-chartjs.git#1ef32fb",
"svelte-check": "^2.2.4",
"svelte-feather-icons": "^3.5.0",
"svelte-jester": "^2.0.1",
"svelte-local-storage-store": "^0.2.4",
"svelte-preprocess": "^4.7.4",
"svelte-preprocess-sass": "^2.0.1",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"dependencies": {
"sirv-cli": "^0.4.4",
"svelte-cordova": "^1.0.6"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev",
"serve:cordova": "sirv src-cordova/www --single --dev --host",
"dev-android": "cross-env CORDOVA_PLATFORM=android run-p serve:cordova autobuild cordova-run-android",
"bundle-android": "cross-env CORDOVA_PLATFORM=android CORDOVA_PROD=true npm run build",
"build-android": "cross-env CORDOVA_PLATFORM=android CORDOVA_PROD=true npm run build-android-subtask",
"build-android-subtask": "npm run build && cd src-cordova && cordova build android",
"cordova-run-android": "cd src-cordova && cordova run android",
"dev-ios": "cross-env CORDOVA_PLATFORM=ios run-p serve:cordova autobuild cordova-run-ios",
"bundle-ios": "cross-env CORDOVA_PLATFORM=ios CORDOVA_PROD=true npm run build",
"build-ios": "cross-env CORDOVA_PLATFORM=ios CORDOVA_PROD=true npm run build-ios-subtask",
"build-ios-subtask": "npm run build && cd src-cordova && cordova build ios",
"cordova-run-ios": "cd src-cordova && cordova run ios",
"test": "jest --coverage src",
"test:watch": "npm run test -- --watch"
},
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
}