-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.54 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
{
"private": true,
"scripts": {
"start": "concurrently npm:serve npm:webpack npm:backend",
"serve": "snowpack dev",
"check": "svelte-check --watch spa",
"check-once": "svelte-check spa",
"webpack": "webpack --mode development --watch",
"frontend-build": "snowpack build && webpack --mode production",
"backend": "mix phx.server",
"test": "jest --watch",
"test-once": "jest"
},
"jest": {
"transform": {
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest",
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"svelte"
],
"transformIgnorePatterns": [
"node_modules/(?!(svelte-routing|other-module)/)"
]
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@capacitor/storage": "^1.0.0",
"babel-loader": "^8.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"hard-source-webpack-plugin": "^0.13.1",
"mini-css-extract-plugin": "^0.9.0",
"nprogress": "^0.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"phoenix": "file:./deps/phoenix",
"phoenix_html": "file:./deps/phoenix_html",
"phoenix_live_view": "file:./deps/phoenix_live_view",
"svelte-routing": "^1.5.0",
"terser-webpack-plugin": "^2.3.2",
"webpack": "4.41.5",
"webpack-cli": "^3.3.2"
},
"devDependencies": {
"@capacitor/android": "^3.0.0",
"@capacitor/app": "^1.0.1",
"@capacitor/cli": "^3.0.0",
"@capacitor/core": "^3.0.0",
"@capacitor/dialog": "^1.0.0",
"@capacitor/local-notifications": "^1.0.0",
"@capacitor/network": "^1.0.1",
"@capacitor/status-bar": "^1.0.1",
"@snowpack/plugin-svelte": "^3.5.0",
"@snowpack/plugin-typescript": "^1.2.0",
"@snowpack/web-test-runner-plugin": "^0.2.0",
"@stripe/stripe-js": "^1.16.0",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^1.0.10",
"@types/chai": "^4.2.13",
"@types/jest": "^26.0.22",
"@types/mocha": "^8.2.0",
"@types/snowpack-env": "^2.3.2",
"@web/test-runner": "^0.12.0",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"imagemin-cli": "^6.0.0",
"jest": "^26.6.3",
"rollbar": "^2.22.0",
"rollbar-cordova": "^0.1.0",
"snowpack": "^3.0.1",
"svelte": "^3.24.0",
"svelte-check": "^1.1.28",
"svelte-jester": "^1.3.2",
"svelte-preprocess": "^4.0.8",
"ts-jest": "^26.5.4",
"typescript": "^4.0.0"
}
}