-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "@engineerapart/stencil-lift",
"version": "0.1.7",
"description": "Stencil Lift - An SSR-safe data loading, serialization, and rehydration utility for Stencil apps, powered by Redux",
"module": "dist/collection/index.js",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "NODE_ENV=production stencil build --ssr",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"start:ssr": "npm run build && NODE_ENV=production node server.js",
"test": "npm run lint && jest",
"test.watch": "jest --watch",
"lint": "tslint --project ./tsconfig.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"deploy": "npm run build && npm run changelog && yarn publish --access public --patch"
},
"dependencies": {
"redux": "^4.0.0"
},
"devDependencies": {
"@stencil/core": "^0.9.7",
"@stencil/dev-server": "latest",
"@stencil/utils": "latest",
"@types/jest": "^23.0.0",
"compression": "^1.7.2",
"conventional-changelog-cli": "^2.0.1",
"express": "^4.16.3",
"jest": "^23.1.0",
"tslint": "^5.10.0",
"tslint-ionic-rules": "^0.0.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineerapart/stencil-lift.git"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/engineerapart/stencil-lift"
},
"homepage": "https://github.com/engineerapart/stencil-lift",
"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"
]
}
}