-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.56 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "front",
"version": "0.0.1",
"description": "A little bit advanced boilerplate and sample app with Lit Element, Redux, Redux-Saga, Reselect, SCSS.",
"author": "Dzintars Klavins",
"license": "ISC",
"homepage": "https://github.com/dzintars/front#readme",
"keywords": [
"lit element",
"boilerplate"
],
"main": "dist/index.js",
"private": true,
"repository": "git+https://github.com/dzintars/front.git",
"bugs": {
"url": "https://github.com/dzintars/front/issues"
},
"scripts": {
"start": "webpack serve --config ./webpack.dev.ts",
"build": "webpack --config webpack.prod.ts",
"lint:eslint": "eslint --ext .ts,.html .",
"lint:prettier": "prettier \"**/*.ts\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
"lint:types": "tsc",
"format": "yarn run format:eslint && yarn run format:prettier",
"format:eslint": "eslint --ext .ts,.js,.html . --fix",
"format:prettier": "prettier \"**/*.ts\" --write",
"json:server": "json-server --port 3002 --watch src/store/db.json",
"wp": "webpack --display-error-details",
"generate:element": "hygen element new",
"generate:component": "hygen component new",
"generate:container": "hygen container new",
"generate:view": "hygen view new",
"generate:feature": "hygen feature new"
},
"dependenciesMeta": {
"webpack-dev-server": {
"unplugged": true
}
},
"dependencies": {
"@reduxjs/toolkit": "^1.4.0",
"@types/leaflet": "^1.5.12",
"history": "^4.10.1",
"leaflet": "^1.6.0",
"lit-element": "latest",
"lit-html": "^1.1.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"reselect-tools": "^0.0.7",
"universal-router": "^8.3.0"
},
"devDependencies": {
"@commitlint/config-conventional": "latest",
"@types/eslint": "latest",
"@types/html-webpack-plugin": "latest",
"@types/mini-css-extract-plugin": "latest",
"@types/node": "latest",
"@types/optimize-css-assets-webpack-plugin": "latest",
"@types/redux-logger": "latest",
"@types/terser-webpack-plugin": "latest",
"@types/webpack": "latest",
"@types/webpack-cleanup-plugin": "latest",
"@types/webpack-dev-server": "latest",
"@types/webpack-merge": "latest",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@yarnpkg/pnpify": "latest",
"clean-webpack-plugin": "latest",
"commitlint": "latest",
"css-loader": "^3.4.2",
"css-modules-typescript-loader": "^4.0.0",
"eslint": "latest",
"extract-loader": "^4.0.3",
"file-loader": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^4.0.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.3.2",
"husky": "latest",
"hygen": "latest",
"json-server": "latest",
"lint-staged": "latest",
"lit-scss-loader": "^1.0.0",
"mini-css-extract-plugin": "latest",
"optimize-css-assets-webpack-plugin": "latest",
"pnp-webpack-plugin": "latest",
"prettier": "latest",
"query-string": "latest",
"redux-devtools-extension": "latest",
"redux-logger": "latest",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "latest",
"ts-loader": "latest",
"ts-node": "latest",
"tsconfig-paths": "latest",
"tslib": "latest",
"typescript": "latest",
"webpack": "^5.53.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "latest",
"webpack-merge": "^5.8.0"
}
}