-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (34 loc) · 1.15 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
{
"name": "expressstencilstarter",
"version": "0.0.1",
"description": "Stencil Component Starter",
"main": "resources/components/index.js",
"module": "resources/components/index.mjs",
"es2015": "resources/components/esm/index.mjs",
"es2017": "resources/components/esm/index.mjs",
"types": "resources/components/types/index.d.ts",
"collection": "resources/components/collection/collection-manifest.json",
"collection:main": "resources/components/collection/index.js",
"unpkg": "resources/components/expressstencilstarter/expressstencilstarter.js",
"files": [
"resources/components/",
"resources/components/loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"server:dev": "ts-node --project tsconfig.server.json server/app.ts",
"server:build": "tsc --build tsconfig.server.json"
},
"devDependencies": {
"@stencil/core": "^1.0.7"
},
"license": "MIT",
"dependencies": {
"@types/express": "4.17.0",
"express": "4.17.1",
"ts-node": "8.3.0"
}
}