-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
{
"name": "storytree",
"private": true,
"version": "0.0.1",
"description": "Storytree Prototype",
"files": [
"dist/"
],
"scripts": {
"buildWithPR": "stencil build --prerender",
"build": "stencil build",
"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.watch": "jest --watch --no-cache"
},
"dependencies": {
"@ionic/core": "4.0.0-alpha.2",
"@stencil/core": "0.7.24",
"connect": "^3.6.6",
"micromatch": "^3.1.10",
"proxy-middleware": "^0.15.0",
"serve-static": "^1.13.2",
"url": "^0.11.0",
"@capacitor/cli": "^1.0.0-alpha.35",
"@capacitor/core": "^1.0.0-alpha.35"
},
"devDependencies": {
"@stencil/dev-server": "latest",
"@stencil/sass": "0.0.3",
"@stencil/utils": "latest",
"@types/jest": "^22.2.2",
"jest": "^22.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/builderchad/storytree.git"
},
"author": "Chad Thatcher",
"license": "MIT",
"bugs": {
"url": "https://github.com/builderchad/storytree"
},
"homepage": "https://github.com/builderchad/storytree",
"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"
]
},
"OLD___config": {
"ionic_bundler": "webpack",
"ionic_webpack": "./config/webpack.config.js"
},
"OLD___build": {
"appId": "com.drakensberg.storytree",
"electronVersion": "1.8.4",
"asar": false,
"files": [
"www/**/*",
"electron/*"
]
}
}