This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 3.05 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
{
"name": "bapc2020",
"version": "1.0.0",
"description": "BAPC Website 2020",
"author": "CHipCie",
"private": true,
"scripts": {
"gulp": "gulp -f gulp/config.ts --cwd .",
"start": "cross-env BROWSERSLIST=\"edge > 12\" webpack-dev-server --config webpack/dev.config.ts --hot --color --compress --overlay --history-api-fallback --open",
"build:static": "cross-env STATIC=true npm run gulp build:es5",
"create-build": "webpack --config webpack/prod.config.ts",
"build": "npm run gulp build",
"lint": "npm run gulp lint"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.3.1",
"@polymer/app-layout": "^3.0.2",
"@polymer/polymer": "^3.1.0",
"@types/workbox-sw": "^4.3.1",
"@webcomponents/webcomponentsjs": "^2.2.7",
"@fortawesome/fontawesome-free": "^5.15.1",
"lit-element": "^2.0.1",
"pwa-helpers": "^0.9.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.1.0",
"@piuccio/ejs-compiled-loader": "^3.0.0",
"@types/clean-webpack-plugin": "0.1.2",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/expect-puppeteer": "^3.3.1",
"@types/gulp": "^4.0.5",
"@types/html-webpack-plugin": "^3.2.0",
"@types/loader-utils": "^1.1.3",
"@types/node": "^10.12.24",
"@types/optimize-css-assets-webpack-plugin": "^1.3.3",
"@types/pixelmatch": "^4.0.0",
"@types/pngjs": "^3.3.2",
"@types/webpack": "^4.4.24",
"@types/webpack-merge": "^4.1.3",
"babel-loader": "^8.0.5",
"babel-plugin-template-html-minifier": "^2.2.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^6.0.2",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"ejs": "^2.6.1",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-htmllint": "^0.0.16",
"gulp-stylelint": "^13.0.0",
"gulp-tslint": "^8.1.3",
"html-webpack-plugin": "^4.0.0-beta.5",
"htmllint": "^0.7.3",
"image-webpack-loader": "^6.0.0",
"loader-utils": "^1.2.3",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"sass-loader": "^7.1.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^2.1.0",
"stylelint-scss": "^3.5.3",
"terser": "^3.16.1",
"terser-webpack-plugin": "^1.2.2",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1",
"workbox-webpack-plugin": "^3.6.3"
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0"
},
"engines": {
"node": ">=8.3"
}
}