generated from beurkinger/preact-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "mazes",
"version": "1.0.0",
"description": "Toying around with mazes generation.",
"main": "index.html",
"scripts": {
"build": "webpack --mode production",
"deploy": "gh-pages -d dist",
"lint": "eslint . --ext .ts,.tsx",
"start": "webpack-dev-server --mode development --open",
"type-check": "tsc --noEmit --watch",
"update-config": "node ./scripts/update-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beurkinger/mazes.git"
},
"keywords": [
"preact",
"javascript",
"typescript",
"html5",
"css3"
],
"author": "Thibault Goehringer",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/beurkinger/mazes/issues"
},
"homepage": "https://github.com/beurkinger/preact-starter-kit#readme",
"dependencies": {
"preact": "^10.4.4"
},
"devDependencies": {
"@teamsupercell/typings-for-css-modules-loader": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.7",
"file-loader": "^4.3.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.2",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}