-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "personal-web-site",
"version": "2.0.0",
"description": "My personal web site",
"files": [
"dist/"
],
"scripts": {
"start": "stencil build --dev --watch --serve",
"prerender": "stencil build --prerender",
"prerender.dev": "stencil build --dev --prerender"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fdom92/personal-web-site.git"
},
"dependencies": {
"@stencil/core": "^1.6.1",
"@stencil/router": "^1.0.1"
},
"devDependencies": {
"@stencil/dev-server": "^0.0.18",
"@stencil/sass": "^1.0.1",
"@stencil/utils": "^0.0.5",
"@types/jest": "^21.1.1",
"jest": "^21.2.1"
},
"author": "Fernando del olmo martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fdom92/personal-web-site/issues"
},
"homepage": "https://github.com/Fdom92/personal-web-site#readme",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}