-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "typerapp",
"version": "0.0.1",
"description": "Typerapp is type-safe Hyperapp V2.",
"main": "lib/main/index.js",
"types": "main/index.ts",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"prepublishOnly": "tsc --build tsconfig.compile.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diontools/typerapp.git"
},
"keywords": [],
"author": "diontools",
"license": "MIT",
"bugs": {
"url": "https://github.com/diontools/typerapp/issues"
},
"homepage": "https://github.com/diontools/typerapp#readme",
"dependencies": {
"csstype": "^2.6.3",
"typescript": "^3.3.4000"
},
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.0",
"@types/webpack": "^4.4.26",
"@types/webpack-dev-server": "^3.1.4",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"files": [
"main",
"helmet",
"style",
"fx",
"router",
"types",
"lib"
],
"sideEffects": [
"./main/svg-alias.ts"
]
}