-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "ionic-stencil-firebase",
"private": true,
"version": "0.0.1",
"description": "ionic stencil firebase",
"repository": {
"url": "https://github.com/tja4472/ionic-stencil-firebase"
},
"files": [
"dist/"
],
"scripts": {
"build": "stencil build --prerender",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"devWithSW": "sd concurrent \"stencil build --dev --service-worker --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "jest --no-cache",
"test.e2e": "jest --no-cache --config jest.config.e2e.json --maxWorkers=1",
"test.watch": "jest --watch --no-cache"
},
"dependencies": {
"@ionic/core": "4.0.0-alpha.7",
"@stencil/core": "0.9.5",
"firebase": "5.0.4",
"rxjs": "6.2.0"
},
"devDependencies": {
"@stencil/dev-server": "0.0.18",
"@stencil/sass": "0.0.5",
"@stencil/utils": "0.0.4",
"@types/jest": "22.2.3",
"@types/jest-environment-puppeteer": "2.2.0",
"@types/puppeteer": "1.3.2",
"jest": "23.0.0",
"jest-puppeteer": "3.0.1",
"jest-puppeteer-preset": "3.0.1",
"puppeteer": "1.4.0"
},
"jest": {
"transform": {
"^.+\\.(js|ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}