-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.14 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
{
"name": "mkswap",
"version": "1.0.0",
"description": "Externalize you short term memory",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.config.js",
"clean": "rimraf ./public",
"build": "webpack --config webpack.prod.config.js",
"rebuild": "npm run clean && npm run build",
"test": "jest"
},
"main": "public/index.html",
"keywords": [],
"sideEffects": [
"src/style.css"
],
"author": "Michał Kijowski <[email protected]> (https://kijowski.dev)",
"license": "MIT",
"browserslist": [
"since 2017-06"
],
"dependencies": {
"@mithril-icons/feather": "1.1.0",
"mithril": "2.0.4"
},
"devDependencies": {
"@types/jest": "25.1.2",
"@types/jsdom": "16.1.0",
"@types/mithril": "2.0.2",
"@types/node": "13.7.1",
"@types/webpack": "4.41.6",
"@types/webpack-dev-server": "3.10.0",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"autoprefixer": "9.7.4",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-config-standard-with-typescript": "13.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"favicons-webpack-plugin": "3.0.1",
"fork-ts-checker-webpack-plugin": "4.0.4",
"html-webpack-plugin": "4.0.0-beta.11",
"jest": "25.1.0",
"jsdom": "16.2.0",
"mini-css-extract-plugin": "0.9.0",
"mithril-query": "3.1.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-calc": "7.0.1",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"rimraf": "3.0.2",
"style-loader": "1.1.3",
"terser-webpack-plugin": "2.3.5",
"ts-jest": "25.2.0",
"ts-loader": "6.2.1",
"ts-node": "8.6.2",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.7.5",
"water.css": "git+https://[email protected]/kognise/water.css.git",
"webpack": "4.41.6",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2",
"workbox-webpack-plugin": "5.0.0"
}
}