-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "marko-router5",
"version": "1.1.0",
"description": "Flexible and powerful routing for MarkoJS",
"main": "./src/index.js",
"scripts": {
"build": "webpack --mode development --config webpack.build.js",
"dev": "webpack-dev-server --watch",
"docs": "docsify serve docs",
"postbuild": "webpack --mode production --config webpack.min.js --optimize-minimize"
},
"author": {
"name": "Jesse Pinheiro",
"url": "https://www.linkedin.com/in/jessebpinheiro"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jesse1983/marko-router5"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"comps": "file:./src",
"css-loader": "^1.0.0",
"docsify-cli": "^4.2.1",
"husky": "^1.0.0-rc.13",
"style-loader": "^0.21.0",
"uikit": "^3.0.0-rc.10",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@marko/webpack": "^2.0.0",
"lodash": "^4.17.15",
"marko": "^4.18.24",
"router5": "^7.0.2",
"router5-plugin-browser": "^7.0.2"
}
}