This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.71 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
{
"name": "@wavevision/posobota-examples",
"version": "1.0.0",
"description": "Source codes for Posobota live stream talk by Wavevision.",
"author": "Wavevision s.r.o <info@wavevision.com>",
"contributors": [
{
"name": "Jakub Filla",
"email": "jakub.filla@wavevision.com"
},
{
"name": "Vít Rozsíval",
"email": "vit@wavevision.com"
}
],
"license": "MIT",
"dependencies": {
"@wavevision/ts-utils": "^0.4.2",
"bootstrap": "^4.4.1",
"svgxuse": "^1.2.6"
},
"devDependencies": {
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/node": "12",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/stylelint-webpack-plugin": "^0.1.5",
"@types/svg-sprite-loader": "^3.9.1",
"@types/terser-webpack-plugin": "^2.2.0",
"@types/webpack": "^4.41.12",
"@types/webpack-dev-server": "^3.10.1",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@wavevision/coding-standard": "^4.0.0",
"@wavevision/nette-webpack": "^0.7.0",
"@wavevision/sprites-constants-generator-plugin": "^4.0.2",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"file-loader": "^6.0.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.3.3",
"stylelint-webpack-plugin": "^1.2.3",
"svg-sprite-loader": "^4.2.5",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^7.0.1",
"ts-node": "^8.9.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"build": "yarn ts:webpack NODE_ENV=production webpack --config webpack/webpack.prod.ts --progress",
"dev": "yarn ts:webpack webpack-dev-server --config webpack/webpack.dev.ts",
"eslint": "eslint app webpack --cache --ext .js --ext .ts",
"eslint:clean": "rm .eslintcache",
"eslint:fix": "yarn eslint --fix",
"fix": "run-s ts eslint:fix prettier:fix stylelint:fix",
"prettier": "prettier '**/*.{js,scss,ts}' --check",
"prettier:fix": "yarn prettier --write",
"reset": "run-s eslint:clean test:clean",
"stylelint": "stylelint app/**/*.scss",
"stylelint:fix": "yarn stylelint --fix",
"ts": "tsc --noEmit --project tsconfig.json",
"ts:webpack": "cross-env TS_NODE_PROJECT='webpack/tsconfig.json' TS_NODE_TRANSPILE_ONLY=true"
}
}