This repository has been archived by the owner on Apr 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.76 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": "@bfmatei/stencil-boilerplate",
"version": "0.0.1",
"description": "Stencil Boilerplate",
"homepage": "https://github.com/bfmatei/stencil-boilerplate",
"repository": {
"type": "git",
"url": "git+https://github.com/bfmatei/stencil-boilerplate.git"
},
"bugs": {
"url": "https://github.com/bfmatei/stencil-boilerplate/issues"
},
"license": "MIT",
"author": {
"name": "Bogdan Matei",
"email": "[email protected]",
"homepage": "https://github.com/bfmatei"
},
"scripts": {
"dev": "sd concurrent \"stencil build --dev --service-worker --watch\" \"stencil-dev-server --no-open\" ",
"dev:production": "NODE_ENV=production sd concurrent \"stencil build --watch\" \"stencil-dev-server --no-open\" ",
"build": "stencil build --prerender",
"lint": "sd concurrent \"npm run lint:ts\" \"npm run lint:styles\"",
"lint:ts": "tslint -p tsconfig.json -c tslint.json",
"lint:styles": "stylelint \"src/**/*.{css,scss,less,pcss}\" --cache --cache-location \"./.stylelint-cache\"",
"test": "jest --no-cache --verbose",
"test:watch": "jest --watch --no-cache --verbose"
},
"dependencies": {
"@stencil/core": "0.4.0-1",
"@stencil/redux": "0.0.4",
"@stencil/router": "0.0.23",
"redux": "3.7.2",
"redux-devtools-extension": "2.13.2",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"@stencil/dev-server": "0.0.18",
"@stencil/utils": "0.0.4",
"@types/jest": "22.1.1",
"jest": "22.2.1",
"postcss": "6.0.17",
"postcss-calc": "6.0.1",
"postcss-cssnext": "3.1.0",
"postcss-import": "11.0.0",
"postcss-reporter": "5.0.0",
"postcss-url": "7.3.0",
"stylelint": "8.4.0",
"tslint": "5.9.1",
"tslint-language-service": "0.9.8",
"tslint-react": "3.4.0"
}
}